다양한 로케일의 문자열에서 금전적 가치를 정확하게 구문 분석하는 방법은 무엇입니까?

DDD
풀어 주다: 2024-11-14 15:01:02
원래의
647명이 탐색했습니다.

How to Accurately Parse Monetary Values from Strings in Various Locales?

Unformatting Monetary Values Accurately in Various Locales

Handling monetary values often requires the conversion of strings representing monetary amounts into numerical quantities. In PHP, the parsefloat() function can be utilized to achieve this. However, when dealing with values that may vary depending on locale, the decimal separator can differ. This poses a challenge for the straightforward parsefloat(str_replace(',', '.', $var)) approach.

A Comprehensive Solution

To address this locale-dependent issue, consider the following solution, which effectively extracts the float value while accounting for different decimal separators and thousand separators:

public function getAmount($money)
{
    $cleanString = preg_replace('/([^0-9\.,])/i', '', $money); // Remove non-numeric characters
    $onlyNumbersString = preg_replace('/([^0-9])/i', '', $money); // Extract only numbers

    $separatorsCountToBeErased = strlen($cleanString) - strlen($onlyNumbersString) - 1; // Determine extra separators

    $stringWithCommaOrDot = preg_replace('/([,\.])/i', '', $cleanString, $separatorsCountToBeErased); // Replace separators
    $removedThousandSeparator = preg_replace('/(\.|,)(?=[0-9]{3,}$)/i', '',  $stringWithCommaOrDot); // Remove excess thousand separators

    return (float) str_replace(',', '.', $removedThousandSeparator); // Convert to float with dot as decimal separator
}
로그인 후 복사

Advantages and Caveats

This solution provides a reliable way to extract float values from monetary strings in various locales. Extensive testing has validated its accuracy for a wide range of scenarios, including values with commas or dots as decimal separators and thousands separators.

However, the caveat lies in its potential failure when dealing with decimal parts exceeding two digits. To address this limitation, modify the regular expression pattern in the code accordingly.

Practical Implementation

The solution is deployed within the library at https://github.com/mcuadros/currency-detector, which specializes in identifying and processing monetary values based on locale-specific settings.

위 내용은 다양한 로케일의 문자열에서 금전적 가치를 정확하게 구문 분석하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿