View Problem

Replace all regex matches in a string with a static string

Transform "She sells sea shells" into "She X X shells" by replacing /se\w+/ with "X"
DiskEdit
clojure
(.replaceAll (re-matcher #"se\w+" "She sells sea shells") "X")

Submit a new solution for clojure
There are 15 other solutions in additional languages (cpp, csharp, erlang, fantom ...)