RegEx to match comma separated numbers with optional decimal part

前端 未结 4 390
名媛妹妹
名媛妹妹 2020-11-30 13:16

I\'ve a regex that matches comma separated numbers with an optional two digit decimal part in a given multiline text.

/(?<=\\s|^)\\d{1,3}(,\\d{3})*(\\.\\d         


        
4条回答
提交回复
热议问题