Java String.contains(CharSequence s)
Syntax
String.contains(CharSequence s) has the following syntax.
public boolean contains(CharSequence s)
Example
In the following code shows how to use String.contains(CharSequence s) method.
public class Main {
public static void main(String[] argv) {
String str = "Java2s.com";
String str2 = "2s.com";
System.out.println(str.contains(str2));
// w ww. ja v a 2 s . c o m
}
}
The code above generates the following result.