Logo

Programming-Idioms

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

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.

var t = String.fromCharCodes(
	s.codeUnits.where((x) => (x ^ 0x30) <= 9) );
(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...