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


Julia replace()用法及代碼示例


replace() 是 julia 中的一個內置函數,用於用指定的字符串或字符替換單詞或字符。

用法:

replace(s::AbstractString, pattern=>Word; count::Integer)

參數:

  • s::抽象字符串:指定的字符串。
  • 模式=>詞:從給定的句子中搜索模式,然後用單詞替換該模式。
  • 計數::整數:它是一個數字,是句子中可用的指定模式的計數。

返回值:它返回一個帶有替換詞的新句子。

範例1:

Python




# Julia program to illustrate
# the use of String replace() method
 
# Getting a new sentence with replaced words
println(replace("GFG is a CS portal.", "CS" => "Computer Science"))
println(replace("GeeksforGeeks is a CS portal.", "GeeksforGeeks" => "GFG"))

輸出:

範例2:

Python


# Julia program to illustrate
# the use of String replace() method
 
# Getting a new sentence with replaced words
println(replace("GFG Geeks.", "GFG" => "GeeksforGeeks", count = 1))
println(replace("GFG Geeks GFG.", "GFG" => "GeeksforGeeks", count = 2))

輸出:

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Replace a substring with another string in Julia – replace() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。