這個last()
是 julia 中的一個內置函數,用於返回由指定字符串的最後 n 個字符組成的字符串,其中 n 將作為參數傳遞。
用法:
last(s::AbstractString, n::Integer)
參數:
- s::抽象字符串:指定的字符串。
- n::整數:指定的整數值。
返回值:它返回一個由指定字符串的最後 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))
輸出:
相關用法
- Julia first()用法及代碼示例
- Julia SubString()用法及代碼示例
- Julia size()用法及代碼示例
- Julia findlast()用法及代碼示例
- Julia last()用法及代碼示例
- Julia sizeof()用法及代碼示例
- Julia Array findlast()用法及代碼示例
- Julia Array fill()用法及代碼示例
- Julia isassigned()用法及代碼示例
- Julia getindex()用法及代碼示例
- Julia replace()用法及代碼示例
- Julia length()用法及代碼示例
- Julia repeat()用法及代碼示例
- Julia findfirst()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get a substring of specific size from end of a string in Julia – last() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。