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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。