Logo

Programming-Idioms

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

Idiom #116 Remove occurrences of word from string

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

import Data.List (isPrefixOf)
remove :: String -> String -> String
remove w "" = ""
remove w s@(c:cs) 
  | w `isPrefixOf` s = remove w (drop (length w) s)
  | otherwise = c : remove w cs

s2 = remove w s1

Instead of just doing the removal, define a function that does it. A function can be tested and reused.
(def s2 (clojure.string/replace s1 w ""))

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