replaceFirst()方法与replaceAll相同,但此处仅替换指定子字符串的第一个外观。
函数定义: String replaceFirst(String regex, String replacement)
返回类型: It returns the stated string after replacing the first appearance of stated regular expression with the string we provide.
范例1:
// Scala program of replaceFirst()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying replaceFirst method
val result = "csoNidhimsoSingh".replaceFirst(".so", "##")
// Displays output
println(result)
}
}
输出:
##NidhimsoSingh
范例2:
// Scala program of replaceFirst()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying replaceFirst method
val result = "NidhimsoSinghcso".replaceFirst(".so", "*")
// Displays output
println(result)
}
}
输出:
Nidhi*Singhcso
范例3:
// Scala program of replaceFirst()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying replaceFirst method
val result = "fsoNidhimsoSinghcso".replaceFirst(".so", "*")
// Displays output
println(result)
}
}
输出:
*NidhimsoSinghcso
相关用法
- Scala String split(String regex, int limit)用法及代码示例
- Scala String startsWith(String prefix, int toffset)用法及代码示例
- Scala String regionMatches(int toffset, String other, int offset, int len)用法及代码示例
- Scala String lastIndexOf(String str, int fromIndex)用法及代码示例
- Scala String startsWith(String prefix)用法及代码示例
- Scala String indexOf(String str, int fromIndex)用法及代码示例
- Scala String indexOf(String str)用法及代码示例
- Scala String lastIndexOf(String str)用法及代码示例
- Scala String regionMatches()用法及代码示例
- Scala String equals()用法及代码示例
- Scala String charAt()用法及代码示例
- Scala String contentEquals()用法及代码示例
- Scala String matches()用法及代码示例
- Scala String replace()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala String replaceFirst() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。