この記事では、プログラミングでよく遭遇する質問、つまり倍精度浮動小数点値を抽出する方法について検討します。 -正規表現の Python re モジュールを使用したテキスト文字列からのポイント数値。
倍精度浮動小数点値と一致させるには、次の正規表現を使用できます。オプションの符号、整数部または小数部、およびオプションの指数。次のパターンは、Perl ドキュメントの例です。
<code class="python">re_float = re.compile("""(?x) ^ [+-]?\ * # optional sign and space ( # integer or fractional mantissa: \d+ # start out with digits... ( \.\d* # mantissa of the form a.b or a. )? # ? for integers of the form a |\.\d+ # mantissa of the form .b ) ([eE][+-]?\d+)? # optional exponent $""")</code>
倍精度値をこのパターンと一致させるには、コンパイルされた正規表現で match メソッドを使用できます。 object:
<code class="python">m = re_float.match("4.5") print(m.group(0)) # prints 4.5</code>
これにより、パターンに一致する文字列の一部 (この場合は文字列全体) が抽出されます。
複数の倍精度値を含む大きな文字列の場合は、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)) # prints ['4.5', '-4.5', '- 4.5', '+ .1e10', ' 1.01e-2', # ' 1.01', '-.2', ' 123', ' .123']</code>
このパターンは、スペースや周囲のテキストに関係なく、任意の倍精度浮動小数点値と一致し、それを抽出します。文字列のリストとして。
以上が正規表現を使用して文字列から倍精度浮動小数点値を抽出する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。