String str = "INsert into";
String str = "INSERT INTO";
String str = "insert into";
String str = "INsert INTO";
如果想把上面的所有匹配成小写的insert to 时可以使用如下语句:
str.replaceFirst("((?i)insert into)", "insert into ");
String str = "INsert into";
String str = "INSERT INTO";
String str = "insert into";
String str = "INsert INTO";
如果想把上面的所有匹配成小写的insert to 时可以使用如下语句:
str.replaceFirst("((?i)insert into)", "insert into ");