This question already has answers here:
Strip all non-numeric characters from string in JavaScript
                                
                                    (8个答案)
                                
                        
                在8个月前关闭。
            
        

我在shopify上设置了快速结帐解决方案,我想将shopify向用户显示(以文本形式)的总购物车价格转换为带有任意点,逗号,空格或货币的数字。从这个“ 15.90€”到这个“ 1590”

最佳答案

只需将每个非数字字符替换为空字符

var str = "15.90€"
str = str.replace(/[^0-9]/g, '')
console.log(str)

关于javascript - 如何将“15.90€”之类的文本转换为“1590”之类的数字? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57446124/

10-14 19:40