jQuery 替换文本格式

发布于 2024-12-09 08:42:10 字数 161 浏览 1 评论 0原文

我想从来自 JSON 的字段中删除 () 和空格,

我想做的是这样的,

'+myleads.Phone.replace(/(/g,'')+'

但我发现每次替换我都必须一遍又一遍地这样做,

有没有更简单的方法?

I am wanting to remove () and spaces from a field that comes from JSON

what I thought of doing was this,

'+myleads.Phone.replace(/(/g,'')+'

But I found out I would have to do it over and over again for each replace

Is there an easier way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2024-12-16 08:42:10

这是一次删除所有左括号、右括号、空格符号和连字符的正则表达式:

myleads.Phone.replace(/[-()\s]/g, '');

编辑:如果您不需要删除连字符,请将其更改为

myleads.Phone.replace(/[()\s]/g, '');

Here is the RegExp to remove all opening and closing round brackets, space symbols and hyphens at once:

myleads.Phone.replace(/[-()\s]/g, '');

EDIT: In case you don't need to remove hyphens, change it to

myleads.Phone.replace(/[()\s]/g, '');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文