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


Julia chop()用法及代碼示例


這個chop()是 julia 中的一個內置函數,用於從指定的字符串中刪除最後一個字符。如果此函數使用頭尾參數,則從字符串中刪除指定數量的第一個頭尾字符。

用法:
chop(s::AbstractString, head::Integer, tail::Integer)

參數:

  • s::抽象字符串:指定的字符串。
  • 頭::整數:刪除字符串起始字符的指定數字。
  • 尾::整數:指定的數字,用於刪除字符串的最後一個字符。

返回值:刪除後返回指定字符串的左側部分。

範例1:




# Julia program to illustrate 
# the use of String chop() method
  
# Getting the removal part of the strings
println(chop("GeeksforGeeks"))
println(chop("GeeksforGeeks", head = 1, tail = 2))
println(chop("GeeksforGeeks", head = 5, tail = 5))
println(chop("GeeksforGeeks", head = 5, tail = 8))
println(chop("GeeksforGeeks", head = 13, tail = 13))

輸出:

範例2:


# Julia program to illustrate 
# the use of String chop() method
  
# Getting the removal part of the strings
println(chop("1-2-3-4-5-6"))
println(chop("1-2-3-4-5-6", head = 1, tail = 2))
println(chop("1-2-3-4-5-6", head = 3, tail = 5))
println(chop("1-2-3-4-5-6", head = 5, tail = 6))
println(chop("1-2-3-4-5-6", head = 11, tail = 11))

輸出:




相關用法


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