“Cómo reemplazar ciertos caracteres en String Swift” Código de respuesta

Cómo reemplazar ciertos caracteres en String Swift

let aString = "This is my string"
let newString = aString.replacingOccurrences(of: " ", with: "+", options: .literal, range: nil)
Encouraging Eland

JavaScript Eliminar primer carácter en cadena

var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"
Grepper

Reemplace el personaje en Swift

extension String {
	func withReplacedCharacters(_ oldChar: String, by newChar: String) -> String {
	    let newStr = self.replacingOccurrences(of: oldChar, with: newChar, options: .literal, range: nil)
	    return newStr
	}
}
Mobile Star

Obtenga cierto personaje de String Java

String words = "Hi There"; //creating a string var named 'words'
char index = words.charAt(0); /* setting a variable 'index' to letter
'0' of variable 'words'. In this case, index = 'H'.*/
System.out.println(index); //print var 'index' which will print "H"
Difficult Deer

Respuestas similares a “Cómo reemplazar ciertos caracteres en String Swift”

Preguntas similares a “Cómo reemplazar ciertos caracteres en String Swift”

Más respuestas relacionadas con “Cómo reemplazar ciertos caracteres en String Swift” en Swift

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código