当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala String indexOf()用法及代码示例


indexOf()方法用于查找字符串中字符首次出现的索引,并且该字符作为参数存在于该方法中。

函数定义: int indexOf(int ch)
返回类型: It returns the index of the character stated 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') 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
1

因此,这里“ i”的第一个出现是在索引1处。因此,返回1作为输出。
范例2:

// Scala program of int indexOf() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying indexOf method 
        val result = "Nidhi".indexOf('h') 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
3


相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala String indexOf() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。