davidvandertuijn/number_format_to_decimal

Number Format To Decimal

4.0 2022-03-31 07:36 UTC

This package is auto-updated.

Last update: 2024-05-29 04:21:17 UTC


README

Total Downloads Latest Stable Version License

Number Format To Decimal

Install

composer require davidvandertuijn/number_format_to_decimal

Usage

number_format_to_decimal('1000,99'); // 1000.99
number_format_to_decimal('1000.99'); // 1000.99
number_format_to_decimal('1.000,99'); // 1000.99
number_format_to_decimal('1,000.99'); // 1000.99
number_format_to_decimal('10.000'); // 10000
number_format_to_decimal('100.000'); // 100000
number_format_to_decimal('10,000'); // 10000
number_format_to_decimal('100,000'); // 100000
number_format_to_decimal('1.000.000'); // 1000000
number_format_to_decimal('1.000.000,99'); // 1000000.99
number_format_to_decimal('1,000,000'); // 1000000
number_format_to_decimal('1,000,000.99'); // 1000000.99

Comments

I use this script for many years, if you have a better solution please let me know!