用java正则表达式检测字符串中含有某字符方法:
public class Test {
public static void main(String[] args) {
String str="Hello World"; //待判断的字符串
String reg=".*ll.*"; //判断字符串中是否含有ll
System.out.println(str.matches(reg));
}
}
package test;
public class JButtonTest
{
public static void main ( String[] args )
{
String input = "asdf..fx...";
System.out.println (input.matches (".*x.*"));
}
}
某字符可不可以具体一点。如果只是检测的话可以就用字符串的indexOf方法的,返回-1的话就不包含,不是的话就包含
这还需要正则表达式?
"abcdef".contains("cd");