Java String indexOf(int ch)方法与示例
字符串indexOf(int ch)方法 (String indexOf(int ch) Method)
indexOf(int ch) is a String method in Java and it is used to get the index of a specified character in the string.
indexOf(int ch)是Java中的String方法,用于獲取字符串中指定字符的索引。
If the character exists in the string, it returns the index of the first occurrence of the character, if the character does not exist in the string, it returns -1.
如果該字符存在于字符串中,則返回該字符首次出現的索引,如果該字符不存在于字符串中,則返回-1。
Syntax:
句法:
int str_object.indexOf(int chr);Here,
這里,
str_object is an object of main string in which we have to find the index of given character.
str_object是主字符串的對象,我們必須在其中找到給定字符的索引。
chr is a character to be found in the string.
chr是在字符串中找到的字符。
It accepts a character and returns an index of its first occurrence or -1 if the character does not exist in the string.
它接受一個字符并返回其首次出現的索引;如果字符串中不存在該字符,則返回-1。
Example:
例:
Input: String str = "IncludeHelp"Function call:str.indexOf('H')Output:7Input: String str = "IncludeHelp"Function call:str.indexOf('W')Output:-1Java code to demonstrate the example of String.indexOf() method
Java代碼演示String.indexOf()方法的示例
public class Main {public static void main(String[] args) {String str = "IncludeHelp";char ch;int index;ch = 'H';index = str.indexOf(ch);if(index != -1)System.out.println(ch + " is found at " + index + " position.");else System.out.println(ch + " does not found.");ch = 'e';index = str.indexOf(ch);if(index != -1)System.out.println(ch + " is found at " + index + " position.");else System.out.println(ch + " does not found."); ch = 'W';index = str.indexOf(ch);if(index != -1)System.out.println(ch + " is found at " + index + " position.");else System.out.println(ch + " does not found."); } }Output
輸出量
H is found at 7 position. e is found at 6 position. W does not found.翻譯自: https://www.includehelp.com/java/string-indexOf-int-ch-method-with-example.aspx
總結
以上是生活随笔為你收集整理的Java String indexOf(int ch)方法与示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: c构造函数和析构函数_C ++构造函数,
- 下一篇: Java中List排序的3种方法!