java判断字符串中包含特定字符串方法:
使用正则表达式进行判断。
源代码:
public class Test {
public static void main(String[] args) {
String str="Hello World"; //待判断的字符串
String reg=".*ll.*"; //判断字符串中是否含有特定字符串ll
System.out.println(str.matches(reg));
}
}