Logo

Programming-Idioms

  • Python
  • Pascal

Idiom #116 Remove occurrences of word from string

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

uses Sysutils;
s2 := s1.Replace(w,''.Empty);

* ''.Empty = ''
* You cannot use string.empty!
Uses sysutils;
s2 := stringreplace(s1, w, '', [rfReplaceAll]);

Consider [rfReplaceAll, rfIgnoreCase] to do this case-insensitive.
uses Sysutils;
s2 := s1.Replace(w,'');
s2 = s1.replace(w, '')
(def s2 (clojure.string/replace s1 w ""))

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