Logo

Programming-Idioms

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

Idiom #221 Remove all non-digits characters

Create string t from string s, keeping only digit characters 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.

using System.Linq;
var t = string.Concat(s.Where(c => char.IsDigit(c)));
(require '[clojure.string :as str])
(let [s "1a22b3c4de5f6"
      t (str/replace s #"[^\d]" "")]
  (println t))

Uses a regex to get only the digit characters.

New implementation...