正则表达式替换
我正在尝试了解有关正则表达式的更多信息,并且一直想知道以下内容:
如何在点字符后插入空格,但仅当点字符不被数字包围时,例如它需要匹配 。但不是22.22!
I'm in the process of trying to learn more about regular expressions and I've been wondering about the following:
How to insert a space after a dot character, but only when the dot character is not surrounded by numbers, e.g. it needs to match . but not 22.22!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是零宽度断言的一个很好的例子:
我我想你会发现这些评论是不言自明的! :)
This is a nice case of zero-width assertions:
I think that you will find the comments self explanatory! :)
尝试:
Try: