文本编辑器搜索和替换正则表达式删除电话号码中的空格

发布于 2024-12-09 18:45:08 字数 363 浏览 0 评论 0原文

所以正则表达式在我的技能方面有点失败。我可以创建一些非常基本的搜索表达式,但是到了进行搜索和替换的时候,我失败了。

我的文本编辑器是 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 技术交流群。

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

发布评论

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

评论(1

本宫微胖 2024-12-16 18:45:08

使用括号创建一个组,并在替换字段中使用 $1、$2 等来匹配组编号,如下所示:

Screenshot

Use parentheses to make a group, and $1, $2, etc in the replace field to match the group number like so:

Screenshot

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