Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Java
- Java
- Java
- Java
- Java
- Clojure
- C#
- Dart
- Go
- Haskell
- JS
- JS
- Lisp
- Pascal
- Pascal
- Perl
- Perl
- Python
- Python
- Ruby
- Rust
String t = s.chars()
.filter(Character::isDigit)
.mapToObj(x -> valueOf((char) x))
.collect(joining());
String t = "";
char c;
int i, n = s.length();
for (i = 0; i < n; ++i)
if (isDigit(c = s.charAt(i)))
t = t + c;
String t = "";
for (char c : s.toCharArray())
if (isDigit(c)) t = t + c;
String t = s.replaceAll("\\D+", "");
StringBuilder tb = new StringBuilder();
for (int i=0; i<s.length(); i++){
if(Character.isDigit(s.charAt(i)))
tb.append(s.charAt(i));
}
String t = tb.toString();
t = filter (`elem` ['0'..'9']) s
t = s.replace(/[^\d]/gm,"");
let t = s.replaceAll(/\D/g, '')
(let ((*t* (remove-if-not #'digit-char-p *s*)))
(format t "~A~%" *t*))
for i := 1 to length(s) do
if s[i] in ['0'..'9'] then
t := t + s[i];
my $t = $s;
$t =~ s/\D+//g;
($t = $s) =~ tr/0-9//cd;
tr/// translates characters, in this case the complement of 0 through 9 as dictated by the c modifier. The d modifier deletes found but unmatched characters, which will be everything except digits. More efficient than using a regex.