“Comment remplacer certains caractères dans String Swift” Réponses codées

Comment remplacer certains caractères dans String Swift

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

JavaScript supprime le premier caractère en chaîne

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

Remplacez le caractère dans 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

Obtenez certains personnages 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

Réponses similaires à “Comment remplacer certains caractères dans String Swift”

Questions similaires à “Comment remplacer certains caractères dans String Swift”

Plus de réponses similaires à “Comment remplacer certains caractères dans String Swift” dans Swift

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code