這個findlast()
是 julia 中的一個內置函數,用於返回指定字符串中指定模式的最後一次出現。
用法:
findlast(Pattern::AbstractString, String::AbstractString)
參數:
- Pattern:要搜索的指定模式
- String:指定字符串
返回值:它以 First_number:Second_number 格式返回一個數字。其中第一個數字是指定字符串中模式出現的最後位置,而第二個數字是字符串中模式結束的位置。
範例1:
# Julia program to illustrate
# the use of String findlast() method
# Here the pattern is "e" and String is
# "geeks"
Println(findlast("e", "geeks"))
# Here the pattern is "eek" and String is
# "geeksforgeeks"
Println(findlast("eek", "geeksforgeeks"))
# Here the pattern is "s" and String is
# "geeks"
Println(findlast("s", "geeks"))
# Here the pattern is "geeks" and String is
# "geeksforgeeks"
Println(findlast("geeks", "geeksforgeeks"))
輸出:
範例2:
# Julia program to illustrate
# the use of String findlast() method
# Here the pattern is "4" and String is
# "2468"
Println(findlast("4", "2468"))
# Here the pattern is "234" and String is
# "123452346"
Println(findlast("234", "123452346"))
# Here the pattern is "45" and String is
# "14523456"
Println(findlast("45", "14523456"))
輸出:
相關用法
- Julia Array findlast()用法及代碼示例
- Julia findfirst()用法及代碼示例
- Julia findnext()用法及代碼示例
- Julia findprev()用法及代碼示例
- Julia SubString()用法及代碼示例
- Julia last()用法及代碼示例
- Julia last()用法及代碼示例
- Julia startswith()用法及代碼示例
- Julia endswith()用法及代碼示例
- Julia parent()用法及代碼示例
- Julia sizeof()用法及代碼示例
- Julia length()用法及代碼示例
- Julia repeat()用法及代碼示例
- Julia first()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get the last occurrence of the specified string pattern in Julia – findlast() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。