Java String "contains"
The java string contains() method searches the sequence of characters in this string. It returns true if sequence of char values are found in this string otherwise returns false.
Signature
The signature of string contains() method is given below:
public boolean contains(CharSequence sequence)
Parameter
sequence : specifies the sequence of characters to be searched.
Returns
true if sequence of char value exists, otherwise false.
Throws
NullPointerException : if sequence is null.
Java String contains() method example
class ContainsExample{
public static void main(String args[]){
String name="what do you know about me";
System.out.println(name.contains("do you know"));
System.out.println(name.contains("about"));
System.out.println(name.contains("hello"));
}}
Expected Output:
truetruefalse
No comments:
Post a Comment