정규식으로 부동소수점/이중값 추출
Python에서는 정규식을 활용하여 문자열에서 부동소수점 또는 이중값을 추출할 수 있습니다. . Perl의 강력한 정규 표현식을 살펴보겠습니다.
(?x) ^ [+-]?\ * # Optional sign followed by optional whitespace ( # Match integers or floating-point mantissas \d+ # Whole numbers ( \.\d* # Mantissa with decimal point (a.b or a.) )? # Optional decimal point |\.\d+ # Mantissa without leading whole number (.b) ) ([eE][+-]?\d+)? # Optional exponent $
예를 들어 문자열에서 double 값을 추출하려면:
<code class="python">import re # Create a regular expression pattern re_float = re.compile(above_regexp) # Match the pattern against a string match = re_float.match("4.5") # Extract the matched value double_value = match.group(0) print(double_value) # Output: 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""" numeric_values = re.findall(r"[+-]? *(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?", s) print(numeric_values) # Output: ['4.5', '-4.5', '- 4.5', '+ .1e10', ' 1.01e-2', ' 1.01', '-.2', ' 123', ' .123']</code>
위 내용은 Python에서 정규식을 사용하여 부동/이중 값을 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!