这个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
相关用法
- Julia join()用法及代码示例
- Julia chop()用法及代码示例
- Julia string()用法及代码示例
- Julia sizeof()用法及代码示例
- Julia reverse()用法及代码示例
- Julia findlast()用法及代码示例
- Julia length()用法及代码示例
- Julia repeat()用法及代码示例
- Julia SubString()用法及代码示例
- Julia findfirst()用法及代码示例
- Julia replace()用法及代码示例
- Julia startswith()用法及代码示例
- Julia endswith()用法及代码示例
- Julia first()用法及代码示例
- Julia last()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Remove a single trailing newline from a string in Julia – chomp() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。