Friday, 13 April 2018

String Contains example





  •        This Java String contains examples shows how to use contains method of Java String class.
     */
    public class JavaStringContains {
            public static void main(String args[]){
                    String str1 = “Hello World”;
                    String str2 = “Hello”;

                    /*
                     * To check whether the string contains specified character sequence use,
                     * boolean contains(CharSequence sq)
                     * method of Java String class.
                     *
                     * This method returns true if the string contains given character sequence.
                     * Please note that contains method is added in Java 1.5  
                     */
                   
                    boolean blnFound = str1.contains(str2);
                    System.out.println(“String contains another string? : “ + blnFound);

                    /*
                     * Please also note that the comparison is case sensitive.
                     */
                   
            }
    }

    /*
    Output of Java String contains example would be
    String contains another string? : true
    */

1 comment:

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (10) C (75) C# (12) C++ (81) Course (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (1) PHP (20) Projects (19) Python (423) R (69) Selenium Webdriver (2) Software (14) SQL (27)