String类型有一个方法:contains(),该方法是判断字符串中是否有子字符串。如果有则返回true,如果没有则返回false.
String str="helloworld"; System.out.println( str.contains("hello")); true
String类型有一个方法:contains(),该方法是判断字符串中是否有子字符串。如果有则返回true,如果没有则返回false.
String str="helloworld"; System.out.println( str.contains("hello")); true