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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。