jQuery 替换文本格式
我想从来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一次删除所有左括号、右括号、空格符号和连字符的正则表达式:
编辑:如果您不需要删除连字符,请将其更改为
Here is the RegExp to remove all opening and closing round brackets, space symbols and hyphens at once:
EDIT: In case you don't need to remove hyphens, change it to