添加内容 //先保存div中原来的html var tag = document.getElementById("tag").innerHTML; //构造新的内容 var couhtml = '<select id="options" name="options" class="form-control input-ssm"><option value = "0" > 请选择<…
Java中正则匹配有多种模式,若不选择模式则默认为单行匹配 匹配模式(Pattern flags) compile()方法有两个模式 未开匹配模式 Pattern compile(String regex) 开匹配模式 Pattern compile(String regex, int flags) 源码关于flags的描述 Match flags, a bit mask that may include {@link #CASE_INSENSITIVE}, {@link #MULTILINE}…
java 正则匹配空格字符串 正则表达式截取字符串 需求:从一堆sql中取出某些特定字符串: 比如配置的sql语句为:"company_code = @cc and project_id = @pid ; update t set a = @aa,b=@bb,c=@cd,ttt=@ttt;update t2 set d=@bb"; 我要拿出所有的以@开头的作为变量,并且去重,则如下玩: ps:其中正则匹配空格是 “\s+” public class Test { public stat…