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


Julia findlast()用法及代碼示例


這個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"))

輸出:




相關用法


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