Es length()
una función incorporada en julia que se usa para devolver la longitud de la string especificada con la posición inicial y final deseada.
Sintaxis:
longitud (S::String abstracta)
o
longitud (S::String abstracta, i::Entero, j::Entero)Parámetros:
- S::AbstractString: string especificada
- i::Integer: Posición de inicio inclusiva.
- i::Integer: Posición final inclusiva.
Devoluciones: Devuelve la longitud de la string especificada con la posición inicial y final deseada.
Ejemplo 1:
# Julia program to illustrate # the use of String length() method # Finding the length of the string # "Geeks" println(length("Geeks")) # Finding the length of the string # "Geeks" from 2nd to 4th position println(length("Geeks", 2, 4)) # Finding the length of the string # "Geeks" from 2nd to 5th position println(length("Geeks", 2, 5)) # Finding the length of the string # "GeeksforGeeks" println(length("GeeksforGeeks")) # Finding the length of the string # "GeeksforGeeks" from 2nd to 2nd position println(length("GeeksforGeeks", 2, 2)) # Finding the length of the string # "GeeksforGeeks" from 4th to 10th position println(length("GeeksforGeeks", 4, 10))
Salida:
Ejemplo 2:
# Julia program to illustrate # the use of String length() method # Finding the length of the string # "12345" println(length("12345")) # Finding the length of the string # "12345" from 2nd to 4th position println(length("12345", 2, 4)) # Finding the length of the string # "2468" from 1st to 3rd position println(length("2468", 2, 3))
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