I have this number format (2,100.00 units), how to remove the characters and retain the numbers and dot(.)? I try this one but no good
percentValueElement.replace(/,\(\)/g, '').replace(/[^[a-z]\.]+/g, "")
I have this number format (2,100.00 units), how to remove the characters and retain
Share
Try this:
Or as David suggested: