¿Cómo agregar una string a otra string en Swift?

El lenguaje Swift admite diferentes tipos de colecciones genéricas y una string es una de ellas. Una string es una colección de alfabetos. En la string Swift, agregamos un valor de string a otra string. Para hacer esta tarea usamos la función append() . Esta función se utiliza para agregar un valor de string a otra string. Devolverá la string adjunta.

Sintaxis:

string.append(string: String)

Aquí string es un objeto de la clase String.

Parámetros: Esta función acepta un parámetro que se ilustra a continuación:

  • str: Esta es una string que se unirá a la string.

Valor de retorno: esta función devuelve una string añadida.

Ejemplo 1:

Swift

// Swift program to add a string value to another string
import Swift
  
// Creating two strings
var string1 = "Geeks"
var string2 = "forGeeks"
  
// Calling the append() function to add
// above given two strings
string1.append(string2)
  
// Getting the appended string
print(string1)

Producción:

GeeksforGeeks

Ejemplo 2:

Swift

// Swift program to add a string value to another string
import Swift
  
// Creating an string
var string = "GeeksforGeeks"
  
// Calling the append() functions to 
// add some strings
string.append(" is a")
string.append(" CS Portal.")
  
// Getting the appended string
print(string)

Producción:

GeeksforGeeks is a CS Portal.

Publicación traducida automáticamente

Artículo escrito por nidhi1352singh 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 *