當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala String replaceAll()用法及代碼示例


replaceAll()方法用於用參數列表中提供的字符串替換與正則表達式匹配的字符串的每個子字符串。

函數定義: String replaceAll(String regex, String replacement)
返回類型: It returns the stated string after replacing the stated sub-string with the string we provide.

範例1:


// Scala program of replaceAll() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying replaceAll method 
        val result = "csoNidhimso".replaceAll(".so", "##") 
          
        // Displays output 
        println(result) 
      
    } 
} 
輸出:
##Nidhi##

範例2:

// Scala program of replaceAll() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying replaceAll method 
        val result = "csoNidhimsoSingh ".replaceAll(".so", "##") 
          
        // Displays output 
        println(result) 
      
    } 
} 
輸出:
##Nidhi##Singh


相關用法


注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala String replaceAll() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。