标签:
在SublimeText中,利用正则表达式来搜索、批量替换是十分开心的事情。
这里记录了曾经使用过的实际案例:
1、搜索"句子开头到第一个.结束的单词"
^[\w| |(|)|\-|\\|\/]+\.
可以匹配类似,JVM. just-in-time compiler. location (in memory).TCP/IP. 这样的输入。
正则表达式实战笔记
原文地址:http://www.cnblogs.com/tangyouhua/p/4301532.html