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


Julia chomp()用法及代码示例


这个chomp()是 julia 中的一个内置函数,用于从字符串中删除单个尾随换行符。

用法:
chomp(s::AbstractString)

参数:

  • s::抽象字符串:指定的字符串。

返回值:它在删除单个尾随换行符后返回一个新字符串。

范例1:




# Julia program to illustrate 
# the use of String chomp() method
  
# Getting the removal part of the strings
println(chomp("GFG\n"))
println(chomp("Geeks\n\n"))
println(chomp("Geeks\nforGeeks"))
println(chomp("GFG\ngfg\n"))

输出:

GFG
Geeks

Geeks
forGeeks
GFG
gfg

范例2:


# Julia program to illustrate 
# the use of String chomp() method
  
# Getting the removal part of the strings
println(chomp("1 + 2+3\n"))
println(chomp("1 + 2+3\n\n"))
println(chomp("1 + 2+3\n4 + 5+6"))
println(chomp("1 * 2\n\n3 * 4\n"))

输出:

1+2+3
1+2+3

1+2+3
4+5+6
1*2

3*4

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Remove a single trailing newline from a string in Julia – chomp() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。