logo

Java virkne indexOf()

InJava, String indexOf()metode atgriež pirmās norādītās rakstzīmes vai virknes sastopamības pozīciju norādītajā virknē.

IndexOf() metodes varianti

Tur ir četri indeksOf() metodes varianti ir minēti zemāk:



  • int indexOf()
  • int indexOf(char ch, int strt)
  • int indexOf(String str)
  • int indexOf(String str, int strt)

1. int indexOf()

Šī metode atgriežas uz rādītājs šajā virknē vispirms norādītās rakstzīmes rašanās vai -1, ja rakstzīme neparādās.

 Syntax: int indexOf(char ch ) Parameters: ch : a character.>

Zemāk ir aprakstīta iepriekš minētās metodes ieviešana

Java








// Java code to demonstrate the working> // of String indexOf()> public> class> Index1 {> >public> static> void> main(String args[])> >{> >// Initialising String> >String gfg =>new> String(>'Welcome to geeksforgeeks'>);> >System.out.print(>'Found g first at position : '>);> >// Initial index of 'g' will print> >// prints 11> >System.out.println(gfg.indexOf(>'g'>));> >}> }>

dinamiskais masīvs java
>

>

Izvade

Found g first at position : 11>

2. int indexOf(char ch, int strt)

Šī metode atgriežas indekss šajā virknē vispirms norādītās rakstzīmes rašanās, sākot meklēšanu ar norādīto indeksu vai -1, ja rakstzīme neparādās.

 Syntax: int indexOf(char ch, int strt) Parameters: ch  :a character. strt : the index to start the search from.>

Iepriekš minētās metodes piemērs:

Java




// Java code to demonstrate the working> // of String indexOf(char ch, int strt)> public> class> Index2 {> >public> static> void> main(String args[])> >{> >// Initialising String> >String gfg =>new> String(>'Welcome to geeksforgeeks'>);> >System.out.print(> >'Found g after 13th index at position : '>);> >// 2nd index of 'g' will print> >// prints 19> >System.out.println(gfg.indexOf(>'g'>,>13>));> >}> }>

>

kas ir const java

>

Izvade

Found g after 13th index at position : 19>

3. int indexOf(String str)

Šī metode atgriežas indekss šajā virknē vispirms norādītā rašanās apakšvirkne . Ja tas nenotiek kā apakšvirkne, tiek atgriezts -1.

dfs algoritms
 Syntax: int indexOf(String str) Parameters: str : a string.>

Iepriekš minētās metodes piemērs:

Java




// Java code to demonstrate the working> // of String indexOf(String str)> public> class> Index3 {> >public> static> void> main(String args[])> >{> >// Initialising string> >String Str =>new> String(>'Welcome to geeksforgeeks'>);> >// Initialising search string> >String subst =>new> String(>'geeks'>);> >// print the index of initial character> >// of Substring> >// prints 11> >System.out.print(> >'Found geeks starting at position : '>);> >System.out.print(Str.indexOf(subst));> >}> }>

>

>

Izvade

Found geeks starting at position : 11>

4. int indexOf(String str, int strt)

Šī metode atgriežas indekss šajā virknē vispirms norādītā rašanās apakšvirkne , sākot norādītajā rādītājs . Ja tas nenotiek, tiek atgriezts -1.

 Syntax: int indexOf(String str, int strt) Parameters: strt : the index to start the search from. str : a string.>

Java

noņemiet pēdējo rakstzīmi no virknes




// Java code to demonstrate the working> // of String indexOf(String str, int strt)> public> class> Index4 {> >public> static> void> main(String args[])> >{> >// Initialising string> >String Str =>new> String(>'Welcome to geeksforgeeks'>);> >// Initialising search string> >String subst =>new> String(>'geeks'>);> >// print the index of initial character> >// of Substring after 14th position> >// prints 19> >System.out.print(> >'Found geeks(after 14th index) starting at position : '>);> >System.out.print(Str.indexOf(subst,>14>));> >}> }>

>

>

Izvade

Found geeks(after 14th index) starting at position : 19>

Dažas saistītās lietojumprogrammas

Noskaidrojiet, vai dotā rakstzīme (varbūt jebkas ar lielo vai mazo burtu) ir patskaņis vai līdzskaņs.

Īstenošana ir norādīta zemāk:

Java


gimp kā noņemt atlasi



class> Vowels {> >// function to check if the passed> >// character is a vowel> >public> static> boolean> vowel(>char> c)> >{> >return> 'aeiouAEIOU'>.indexOf(c)>=>0>;> >}> >// Driver program> >public> static> void> main(String[] args)> >{> >boolean> isVowel = vowel(>'a'>);> >// Printing the output> >if> (isVowel)> >System.out.println(>'Vowel'>);> >else> >System.out.println(>'Consonant'>);> >}> }>

>

>

Izvade

Vowel>