Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

Java String contains() Method

❮ String Methods


Example

Find out if a string contains a sequence of characters:

public class MyClass {
  public static void main(String[] args) {
    String myStr = "Hello";
    System.out.println(myStr.contains("Hel"));   // true
    System.out.println(myStr.contains("e"));     // true
    System.out.println(myStr.contains("Hi"));    // false
  }
}

Run example »


Definition and Usage

The contains() method checks whether a string contains a sequence of characters.

Returns true if the characters exist and false if not.


Syntax

public boolean contains(CharSequence chars)

Parameter Values

Parameter Description
CharSequence chars The characters to be searched for

The CharSequence interface is a readable sequence of char values, found in the java.lang package.

Technical Details

Returns: A boolean, indicating whether a sequence of characters exist in the specified string:
  • true - sequence of characters exists
  • false - sequence of characters do not exist
Throws: NullPointerException - if the returned value is null
Java Version: 1.5

❮ String Methods