其他分享
首页 > 其他分享> > 删除标点符号

删除标点符号

作者:互联网

// https://stackoverflow.com/questions/21109011/javascript-unicode-string-chinese-character-but-no-punctuation
// 删除标点符号
console.log(
    "hello! 42 我的中文不好。我是意大利人。你知道吗?"
        .split("")
        .filter(char => /\p{Script=Han}/u.test(char))
        .join("")
);

标签:删除,Script,character,char,标点符号,questions
来源: https://www.cnblogs.com/daysme/p/15795160.html