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


Julia findfirst()用法及代码示例


findfirst() 是 julia 中的一个内置函数,用于返回指定字符串中指定模式的第一次出现。

用法:

findfirst(Pattern::AbstractString, String::AbstractString)

参数:

  • Pattern:要搜索的指定模式
  • String:指定字符串

返回值:它以 First_number:Second_number 格式返回一个数字。其中第一个数字是指定字符串中模式出现的第一个位置,而第二个数字是字符串中模式结束的位置。

范例1:



Python


# Julia program to illustrate
# the use of String findfirst() method
  
# Here the pattern is "g" and String is
# "geeks"
Println(findfirst("g", "geeks"))
  
# Here the pattern is "eek" and String is
# "geeks"
Println(findfirst("eek", "geeks"))
  
# Here the pattern is "ks" and String is
# "geeks"
Println(findfirst("ks", "geeks"))
  
# Here the pattern is "geeks" and String is
# "geeksforgeeks"
Println(findfirst("geeks", "geeksforgeeks"))

输出:

范例2:

Python


# Julia program to illustrate
# the use of String findfirst() method
  
# Here the pattern is "4" and String is
# "2468"
Println(findfirst("4", "2468"))
  
# Here the pattern is "234" and String is
# "123456"
Println(findfirst("234", "123456"))
  
# Here the pattern is "45" and String is
# "123456"
Println(findfirst("45", "123456"))

输出:




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get the first occurrence of the specified string pattern in Julia – findfirst() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。