質問: 正規表現を使用して文字列から double 値を分離するにはどうすればよいですか? ?
解決策:
正規表現を使用して文字列から double 値を抽出するには、次のような高度な正規表現を使用できます。
<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>
このパターンは、10 進数または科学的表記法で浮動小数点数を表す文字列と一致します。文字列から数値を抽出するには、単に 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>
以上が正規表現を使用して文字列から Double 値を抽出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。