Java String Start With startWith(String str, String prefix)

Here you can find the source of startWith(String str, String prefix)

Description

start With

License

Open Source License

Declaration

public static boolean startWith(String str, String prefix) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static boolean startWith(String str, String prefix) {
        return str.startsWith(prefix);
    }/*from   ww  w . j a  v a 2 s  . c o m*/
}

Related

  1. startWith(String source, String target)
  2. startWith(String str, String start)
  3. startWith(String string, String prefix)
  4. startWith(String string1, String string2)
  5. startWithAorAn(String str)