正規表現を使用した文字列からの Double 値の抽出
問題: を使用して文字列から Double 値を分離するにはどうすればよいですか?正規表現ですか?
次のコード スニペットを考えてみましょう:
<code class="python">import re pattr = re.compile(???) x = pattr.match("4.5")</code>
解決策:
正規表現を使用して文字列から double 値を抽出するには式では、次の正規表現を使用できます。
(?x) ^ [+-]?\ * # Optional sign and space ( # Integers or f.p. mantissas: \d+ # Integers of the form 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+)? # Optionally match an exponent $
この正規表現は、オプションの符号とスペースで始まり、その後に整数または浮動小数点の仮数、およびオプションの指数が続く文字列と一致します。
例は次のとおりです:
<code class="python">import re re_float = re.compile("""(?x) ^ [+-]?\ * # Optional sign and space ( # Integers or f.p. mantissas: \d+ # Integers of the form 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+)? # Optionally match an exponent $""") m = re_float.match("4.5") print(m.group(0)) # -> 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)) # -> ['4.5', '-4.5', '- 4.5', '+ .1e10', ' 1.01e-2', # ' 1.01', '-.2', ' 123', ' .123']</code>
この正規表現は、オプションの符号、スペース、整数とオプションの小数部の組み合わせ、およびオプションの指数表記で構成される任意の数値と一致します。
以上が正規表現を使用して文字列から Double 値を抽出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。