如何一次替换()多个字符?
我有一个像这样的字符串:
var set = 'ñ This is a Test Ñ';
我需要做的是将 ñ
和 Ñ
替换为 n
。我尝试过:
set.replace(/\u00F1/g, 'n');
但它只替换了ñ
。
I have an string like this:
var set = 'ñ This is a Test Ñ';
What I need to do is replace ñ
and Ñ
with n
. I tried:
set.replace(/\u00F1/g, 'n');
but it only replaces the ñ
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为有一种更干净的方法可以写这个,但这应该可行。
|
充当正则表达式中的OR
。I think there is a cleaner way to write this, but this should work. The
|
acts as anOR
in regex.