for i := 1 to length(s) do
if s[i] in ['0'..'9'] then
t := t + s[i];
($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.