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?
You can make use of the
^. It considers everything apart from what you have infront of it.So if you have
[^y]its going to filter everything apart from y. In your case you would do something likewhere string is a variable holding the actual text!