Hello,
Can regular expressions help me here? I want to extract a number
from a string which will always be of the form "parameter# ##" where
"###" is an arbitrary number of numeric digits. So if my string
contained
parameter24
parameter8
parameter90210
I would want to extract "24", "8", and "90210" respectively.
Thanks for any help, -
Can regular expressions help me here? I want to extract a number
from a string which will always be of the form "parameter# ##" where
"###" is an arbitrary number of numeric digits. So if my string
contained
parameter24
parameter8
parameter90210
I would want to extract "24", "8", and "90210" respectively.
Thanks for any help, -
Comment