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


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