The Třída Java String beginWith() metoda zkontroluje, zda tento řetězec začíná danou předponou. Vrací hodnotu true, pokud tento řetězec začíná danou předponou; else vrátí false.
řazení vložení
Podpis
Syntaxe nebo podpis metody startWith() je uveden níže.
public boolean startsWith(String prefix) public boolean startsWith(String prefix, int offset)
Parametr
předpona : Posloupnost znaků
offset: index, od kterého začíná shoda předpony řetězce.
Návraty
pravda nebo lež
Interní implementace beginWith(předpona řetězce, int toffset)
public boolean startsWith(String prefix, int toffset) { char ta[] = value; int to = toffset; char pa[] = prefix.value; int po = 0; int pc = prefix.value.length; // Note: toffset might be near -1>>>1. if ((toffset value.length - pc)) { return false; } while (--pc >= 0) { if (ta[to++] != pa[po++]) { return false; } } return true; }
Interní implementace beginWith(předpona řetězce,)
// Since the offset is not mentioned in this type of startWith() method, the offset is // considered as 0. public boolean startsWith(String prefix) { // the offset is 0 return startsWith(prefix, 0); }
Příklad metody Java String beginWith().
Metoda beginWith() zohledňuje rozlišení znaků. Zvažte následující příklad.
Název souboru: StartsWithExample.java
kdy končí q1
public class StartsWithExample { // main method public static void main(String args[]) { // input string String s1='java string split method by javatpoint'; System.out.println(s1.startsWith('ja')); // true System.out.println(s1.startsWith('java string')); // true System.out.println(s1.startsWith('Java string')); // false as 'j' and 'J' are different } }
Výstup:
true true false
Java String beginWith(předpona řetězce, int offset) Příklad metody
Je to přetížená metoda metody startWith(), která se používá k předání dalšího argumentu (offsetu) funkci. Metoda funguje od předaného offsetu. Podívejme se na příklad.
Název souboru: StartsWithExample2.java
public class StartsWithExample2 { public static void main(String[] args) { String str = 'Javatpoint'; // no offset mentioned; hence, offset is 0 in this case. System.out.println(str.startsWith('J')); // True // no offset mentioned; hence, offset is 0 in this case. System.out.println(str.startsWith('a')); // False // offset is 1 System.out.println(str.startsWith('a',1)); // True } }
Výstup:
řetězec jsonobject
true false true
Příklad metody Java String beginWith() - 3
Pokud přidáme prázdný řetězec na začátek řetězce, nemá to na řetězec vůbec žádný vliv.
'' + 'Olympiáda v Tokiu' = 'Olympiáda v Tokiu'
To znamená, že lze říci, že řetězec v Javě vždy začíná prázdným řetězcem. Potvrďme totéž pomocí kódu Java.
java metoda
Název souboru: StartsWithExample3.java
public class StartsWithExample3 { // main method public static void main(String argvs[]) { // input string String str = 'Tokyo Olympics'; if(str.startsWith('')) { System.out.println('The string starts with the empty string.'); } else { System. out.println('The string does not start with the empty string.'); } } }
Výstup:
The string starts with the empty string.