How do I extract a double value from a string using regex.
import re
pattr = re.compile('??????????????')
x = pattr.match("4.5")
|
|
|||
|
|
|
Here's the easy way. Don't use regex's for built-in types.
|
||
|
|
|
|
A regexp from the
To extract numbers from a bigger string:
|
|||
|
|
|
|
I'm assuming your string contains text apart from just a floating point value. If the whole string is just a number, you can just use:
You can use something like this to find all the floats in the string:
|
||||
|