📌  相关文章
📜  js 从字符串中删除所有非数字 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:54.556000             🧑  作者: Mango

代码示例2
const string = "hello world 123";

// remove all digits from the string
const newString = string.replace(/\d/g, "") // "hello world "