I have two strings
string1 = 44.365 Online order
and string2 = 0 Request Delivery. Now I would like to apply a regular expression to these strings that filters out everything but numbers so I get integers like string1 = 44365 and string2 = 0.
How can I accomplish this?