fork(6) download
  1. testString = 'this is, a , sentence33 Here, is another.';
  2. result = testString.gsub(/\,(?=.*\d)/, 'comma');
  3. print result;
Success #stdin #stdout 0s 4760KB
stdin
Standard input is empty
stdout
this iscomma a comma sentence33 Here, is another.