Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #116 Remove occurrences of word from string

Remove all occurrences of string w from string s1, and store the result in s2.

const s2 = s1.split(w).join('')

Better not to use a RegExp, in case the word contains dots, asterisks, &c. One may also wish to remove redundant spaces afterward: str.replace(/\s+/g, ' ')
var regex = RegExp(w, 'g');
var s2 = s1.replace(regex, '');

Search pattern can also be defined in Regular Expressions. See the documentation.

If a string is used instead of regex, only the first match will be replaced.
(def s2 (clojure.string/replace s1 w ""))

New implementation...
< >
programming-idioms.org