# pull out all numbers in a string $data = "My 3 dogs have 432 fleas and 25 ticks" $expression = "\d*" $count = RegExCount($expression,$data) $x = 0 While $count > $x $x = $x + 1 $found = RegExData($expression,$data,$x) MsgOk Msg=$found EndWhile |
$data = "My 3 dogs have 432 fleas and 25 ticks" $expression = "\d*" $MatchAll = RegExData($expression,$data,0) msgOk msg=$MatchAll |