问题:如何使用正则表达式从字符串中分离双精度值?
解决方案:
要使用正则表达式从字符串中提取双精度值,可以使用复杂的正则表达式,例如:
<code class="python">import re re_float = re.compile("""(?x) ^ [+-]?\ * # first, match an optional sign *and space* ( # then match integers or f.p. mantissas: \d+ # start out with a ... ( \.\d* # mantissa of the form a.b or a. )? # ? takes care of integers of the form a |\.\d+ # mantissa of the form .b ) ([eE][+-]?\d+)? # finally, optionally match an exponent $""")</code>
此模式匹配以十进制或科学记数法表示浮点数的字符串。要从字符串中提取数字,只需调用 re_float.match(string)。
例如:
<code class="python">m = re_float.match("4.5") print(m.group(0)) # -> 4.5</code>
此代码将“4.5”打印到控制台。
从字符串中提取多个数字:
要从较大的字符串中提取多个数字,可以将 re.findall() 函数与相同的正则表达式模式结合使用:
<code class="python">s = """4.5 abc -4.5 abc - 4.5 abc + .1e10 abc . abc 1.01e-2 abc 1.01e-.2 abc 123 abc .123""" print(re.findall(r"[+-]? *(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?", s)) # -> ['4.5', '-4.5', '- 4.5', '+ .1e10', ' 1.01e-2', # ' 1.01', '-.2', ' 123', ' .123']</code>
以上是如何使用正则表达式从字符串中提取双精度值?的详细内容。更多信息请关注PHP中文网其他相关文章!