Invertir una string en Julia – método reverse()

La reverse()es una función incorporada en julia que se usa para devolver el reverso de la string especificada.

Sintaxis:
inversa(s::StringAbstracta)

Parámetros:

  • a::AbstractString: string especificada

Devoluciones: Devuelve el reverso de la string especificada.

Ejemplo 1:

# Julia program to illustrate 
# the use of String reverse() method
  
# Getting the reverse of the specified string
println(reverse("GFG"))
println(reverse("gfg"))
println(reverse("Geeks"))
println(reverse("GeeksforGeeks"))

Producción:

GFG
gfg
skeeG
skeeGrofskeeG

Ejemplo 2:

# Julia program to illustrate 
# the use of String reverse() method
  
# Getting the reverse of the specified string
println(reverse("123"))
println(reverse("5"))
println(reverse("@#"))
println(reverse("^&*"))

Producción:

321
5
#@
*&^

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 *