indexOf(int ch,int fromIndex)方法与indexOf()方法相同,但是在这里此方法开始从我们指定的索引中查找字符。
函数定义: int indexOf(int ch, int fromIndex)
返回类型: It returns the index of the character specified in the argument.
范例1:
// Scala program of int indexOf()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying indexOf method
val result = "Nidhi".indexOf('i', 2)
// Displays output
println(result)
}
}
输出:
4
因此,这里的“ i”第一次出现是在第二个索引为4之后。因此,将4作为输出返回。
范例2:
// Scala program of int indexOf()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying indexOf method
val result = "NidhiSingh".indexOf('h', 4)
// Displays output
println(result)
}
}
输出:
9
在这里,“ h”在第四个索引之后的第一个出现是9。因此,它返回了。
相关用法
- Scala String lastIndexOf(String str, int fromIndex)用法及代码示例
- Scala String indexOf(String str, int fromIndex)用法及代码示例
- Scala String regionMatches(int toffset, String other, int offset, int len)用法及代码示例
- Scala String startsWith(String prefix, int toffset)用法及代码示例
- Scala String split(String regex, int limit)用法及代码示例
- Scala String startsWith(String prefix)用法及代码示例
- Scala String indexOf(String str)用法及代码示例
- Scala String lastIndexOf(String str)用法及代码示例
- Scala String matches()用法及代码示例
- Scala String toLowerCase()用法及代码示例
- Scala String regionMatches()用法及代码示例
- Scala String subSequence()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala String indexOf(int ch, int fromIndex) method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。