extract-price
extract-price copied to clipboard
parse result empty for 1 222 333,50
do you have test these ?
extractPrice('and space followed by "," notation 1 222 333,50');
// [{amount: 122233350}]
extractPrice('and space followed by "." notation 1 222 333.50');
// [{amount: 122233350}]
extractPrice('extracts multiple prices listed anywhere within the string using different formats: 1,22, 222, 3,22, 4.20, 5.666');
// [{amount: 12200}, {amount: 22200}, {amount: 322}, {amount: 422}, {amount: 566600}]
why i got [], with 1 222 333,50
It was not designed to support numbers that include spaces in them, but this can be added.
what about stripping spaces before parsing?