日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

Java String indexOf(int ch)方法与示例

發布時間:2025/3/11 java 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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:-1

Java 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)方法与示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。