我正在寻找一个可以作为标题的正则表达式模式,它的意思是3个给定的前缀“#,@,+”,以下字符将被忽略,直到它是空格。例如:
“+ 20 @facebook #hashtag与我的爱”
将返回
“用我的爱”
答案 0 :(得分:-1)
您可以通过以下方式使用此功能
const regex = /[\+|\@|\#][\w\p{P}]*\s+/g;
const str = '"+20 @facebook #hashtag with my love"';
const subst = '';
// The substituted value will be contained in the result variable
const result = str.replace(regex, subst);
console.log('Substitution result: ', result);