I need to find values inside this string:
10days25hours15minutes
I need get the numbers of days, hours and minutes, but the string can change, like this:
10d25h15m
|
|
Assuming the input string consists of three decimal numbers each terminated by one or more non-digits, you can use the following regular expression:
|
|||
|
|
|
You can use this regex:
which matches
You may want to make it more accurate according to your needs. Example code:
|
|||||||
|
Then retrieve the values using |
||||
|
|
Or
return your number ordinaly... |
|||
|
|