📌  相关文章
📜  在 Julia 中从字符串末尾获取特定大小的子字符串– last() 方法

📅  最后修改于: 2021-11-25 04:43:55             🧑  作者: Mango

last()是在朱一个内置函数,其用于返回由指定的字符串,其中,n为将参数传递的最后n字符的字符串。

示例 1:

# Julia program to illustrate 
# the use of String last() method
  
# Getting a string consisting of the last
# n characters of the specified string
println(last("GeeksforGeeks", 0))
println(last("GeeksforGeeks", 5))
println(last("GeeksforGeeks", 8))
println(last("GeeksforGeeks", 10))

输出:

示例 2:

# Julia program to illustrate 
# the use of String last() method
  
# Getting a string consisting of the last
# n characters of the specified string
println(last("1 + 2+3 + 4", 0))
println(last("2-4-6-8", 4))
println(last("1 * 3*5 * 7", 6))

输出: