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


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