If you want to get rid of all punctuation and symbols from a number field except comma and negative symbol, try this regex
let result = Field_name.replace(/[^\d\.\-]/g, '')
If you want to get rid of all punctuation and symbols from a number field except comma and negative symbol, try this regex
let result = Field_name.replace(/[^\d\.\-]/g, '')