Java字符串indexOf(int ch,int fromIndex)方法,带示例

字符串indexOf(int ch,int fromIndex)方法 (String indexOf(int ch, int fromIndex) Method)

indexOf(int ch, int fromIndex) is a String method in Java and it is used to get the index of a specified character in the string from given fromIndex. That means to search for the character will start from the given index (fromIndex).

indexOf(int ch,int fromIndex)是Java中的String方法,用于从给定的fromIndex获取字符串中指定字符的索引。 这意味着搜索字符将从给定索引( fromIndex )开始。

If the character exists in the string from fromIndex, it returns the index of the first occurrence of the character, if the character does not exist in the string, it returns -1.

如果该字符存在于fromIndex的字符串中,则返回该字符首次出现的索引,如果该字符不存在于字符串中,则返回-1。

Syntax:

句法:

    int str_object.indexOf(int ch, int fromIndex);

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是在字符串中找到的字符。

  • fromIndex is the position in main string from where we method will start the searching for the character.

    fromIndex是主字符串在其中我们方法将开始搜索字符的位置。

It accepts a character, from index and returns an index of its first occurrence or -1 if the character does not exist in the string.

它从index接受一个字符,并返回其首次出现的索引;如果字符串中不存在该字符,则返回-1。

Example:

例:

    Input: 
    String str = "IncludeHelp"

    Function call:
    str.indexOf('H', 4)

    Output:
    7

    Input: 
    String str = "IncludeHelp"

    Function call:
    str.indexOf('W', 2)

    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, 4);
        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, 3);
        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, 2);
        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-fromindex-method-with-example.aspx

  • 4
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值