fork download
  1. function removeFirstOccurrences(str, value) {
  2. return str.replace(new RegExp(value), '');
  3. }
  4.  
  5. console.log(removeFirstOccurrences('To be or not to be', 'not'));
  6. console.log(removeFirstOccurrences('I like legends', 'end' ));
  7. console.log(removeFirstOccurrences('ABABAB', 'BA'));
  8. console.log(removeFirstOccurrences('me not love you ', 'not' ));
Success #stdin #stdout 0.03s 16944KB
stdin
Standard input is empty
stdout
To be or  to be
I like legs
ABAB
me  love you