Es endswith()
una función incorporada en julia que se usa para devolver verdadero si la string especificada termina con el valor de sufijo especificado; de lo contrario, devuelve falso.
Sintaxis:
termina con (s::String abstracta, sufijo::String abstracta)Parámetros:
- s::AbstractString: string especificada.
- sufijo::AbstractString: valor de sufijo especificado.
Devuelve: Devuelve verdadero si la string especificada termina con el sufijo especificado; de lo contrario, devuelve falso.
Ejemplo 1:
# Julia program to illustrate # the use of String endswith() method # Checking ending part of string with # specified suffix value println(endswith("Geeks", "ks")) println(endswith("GeeksforGeeks", "forGeeks")) println(endswith("GFG", "FG"))
Producción:
true true true
Ejemplo 2:
# Julia program to illustrate # the use of String endswith() method # Checking ending part of string with # specified suffix value println(endswith("Geeks", "Geek")) println(endswith("GeeksforGeeks", "Geek")) println(endswith("GFG", "GF"))
Producción:
false false false
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