如何保留句子的一部分 Node.Js
How to keep one part of a sentence Node.Js
我想保留句子的一部分,将其放入这样的函数的 arg 中:
var sen1 = "Hello this is my email"
var final = "this is my email"
我是 Node.js 和 JS 的初学者。我听说过 RegExp 函数,但我不知道如何使用它从 sen1
.
中删除 Hello
任何人都可以帮助我或建议我做这件事吗?
你不需要正则表达式,你可以简单地使用字符串方法 replace()
。
语法如下:
"".replace(<What you want to replace>, <by what you want to replace it>)
所以你正在寻找这个:
let sen1 = "Hello this is my email"
let final = sen1.replace("Hello ", "");
console.log(final);
您可以通过下面的 RegEx 来完成。
var sen1 = "Hello this is my email"
console.log(sen1.replace(/^\w+\s/, ""));
正则表达式的解释 - ^\w+\s
^
表示字符串的开头
\w+
表示字符组(\w
)
\s
表示空格
我想保留句子的一部分,将其放入这样的函数的 arg 中:
var sen1 = "Hello this is my email"
var final = "this is my email"
我是 Node.js 和 JS 的初学者。我听说过 RegExp 函数,但我不知道如何使用它从 sen1
.
Hello
任何人都可以帮助我或建议我做这件事吗?
你不需要正则表达式,你可以简单地使用字符串方法 replace()
。
语法如下:
"".replace(<What you want to replace>, <by what you want to replace it>)
所以你正在寻找这个:
let sen1 = "Hello this is my email"
let final = sen1.replace("Hello ", "");
console.log(final);
您可以通过下面的 RegEx 来完成。
var sen1 = "Hello this is my email"
console.log(sen1.replace(/^\w+\s/, ""));
正则表达式的解释 - ^\w+\s
^
表示字符串的开头\w+
表示字符组(\w
)\s
表示空格