Logo

Programming-Idioms

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

Idiom #116 Remove occurrences of word from string

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

import "strings"
s2 := strings.ReplaceAll(s1, w, "")
import "strings"
s2 := strings.Replace(s1, w, "", -1)

Replaces w with empty string. -1 means "replace all occurrences".
(def s2 (clojure.string/replace s1 w ""))

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