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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。