文本编辑器搜索和替换正则表达式删除电话号码中的空格
所以正则表达式在我的技能方面有点失败。我可以创建一些非常基本的搜索表达式,但是到了进行搜索和替换的时候,我失败了。
我的文本编辑器是 TextMate(如果有帮助的话),但这对于一般文本编辑器来说应该是相当通用的。
我在 TextMate 中打开了一个 CSV 文件。我需要删除所有电话号码中的所有空格。电话号码的格式为:DD DDD DDDD 或 DDDD DD DDDD,或其他一些变体。
查找这些数字的正则表达式应该相当简单,但是我到底如何使用它的输出来进行替换呢?
我在文本编辑器中搜索/替换的上下文中寻找搜索正则表达式和替换正则表达式。
搜索:,[\d+\s*]+,(至少一位数字,0个或多个空格,重复和贪婪) 代替: ?
So regular expressions are a bit of a failing in my skill set. I can create some very basic search expressions, but come time to do search and replace, I fail.
My text editor is TextMate if that helps, but this should be fairly general to text editors in general.
I've got a CSV file open in TextMate. I need to remove all white space from all the phone numbers. The phone numbers are in the format: DD DDD DDDD or DDDD DD DDDD, or some other variations.
The regex to find these numbers should be fairly simple, but how on earth do I use the output of that to do the replacing?
I'm after a search regex, and the replace regex, in the context of search/replace in a text editor.
Search: ,[\d+\s*]+, (at least one digit, 0 or more spaces, repeating and greedy)
Replace: ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用括号创建一个组,并在替换字段中使用 $1、$2 等来匹配组编号,如下所示:
Use parentheses to make a group, and $1, $2, etc in the replace field to match the group number like so: