Logo

Programming-Idioms

  • Erlang
  • Clojure

Idiom #116 Remove occurrences of word from string

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

(def s2 (clojure.string/replace s1 w ""))
S2 = string:replace(S1, W, "", all).
string s2 = s1.Replace(w, string.Empty);

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