Logo

Programming-Idioms

  • Ruby
  • Vb

Idiom #116 Remove occurrences of word from string

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

Dim s2 As String = s1.Replace(w, String.Empty)
s2 = s1.gsub(w, "")
(def s2 (clojure.string/replace s1 w ""))

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