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:
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
true true false
No comments:
Post a Comment