Obtener la primera aparición del patrón de string especificado en Julia – Método findfirst()

findfirst () es una función incorporada en julia que se usa para devolver la primera aparición del patrón especificado en una string especificada.
 

Sintaxis: 

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

Parámetros: 

  • Patrón: Patrón especificado para ser buscado
  • String: string especificada

Devoluciones: Devuelve un número en el formato de Primer_número:Segundo_número. Donde el primer número es la primera posición de aparición del patrón en la string especificada, mientras que el segundo número es la posición en la string donde termina el patrón. 
 

Ejemplo 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"))

Producción: 
 

Ejemplo 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"))

Producción: 
 

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *