最近自己做了个小项目,涉及到了大量的正则表达式匹配和处理,在这里也和大家分享一下. 我相信接触过SQL Server数据库的很多朋友都知道,它是以"--"开头来进行注释的,但你觉得匹配它真的很容易吗? 让我们来看一些例子: --获取表的count信息 select count(*) from T with(nolock) --获取特定值的count信息 select count(*) from T with(nolock) where v = '--value' --获取表'T'的co…
import java.util.ArrayList; import java.util.regex.Matcher; import java.util.regex.Pattern; public class test { public void main() { getStrings(); //用正则表达式获取指定字符串内容中的指定内容 System.out.println("********************"); replace(); //用正则表达式替换字符串内容 Sys…