如何使用正则表达式从JavaScript中的字符串中删除所有标点符号?
2022-08-30 01:26:24
如果我有一个字符串,其中包含任何类型的非字母数字字符:
"This., -/ is #! an $ % ^ & * example ;: {} of a = -_ string with `~)() punctuation"
我如何在JavaScript中获得它的无标点符号版本:
"This is an example of a string with punctuation"