Réponses:
Voici comment supprimer tous les espaces blancs du début et de la fin d'un fichier String
.
(Exemple testé avec Swift 2.0 .)
let myString = " \t\t Let's trim all the whitespace \n \t \n "
let trimmedString = myString.stringByTrimmingCharactersInSet(
NSCharacterSet.whitespaceAndNewlineCharacterSet()
)
// Returns "Let's trim all the whitespace"
(Exemple testé avec Swift 3+ .)
let myString = " \t\t Let's trim all the whitespace \n \t \n "
let trimmedString = myString.trimmingCharacters(in: .whitespacesAndNewlines)
// Returns "Let's trim all the whitespace"
J'espère que cela t'aides.
Mettez ce code sur un fichier de votre projet, quelque chose comme Utils.swift:
extension String
{
func trim() -> String
{
return self.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())
}
}
Vous pourrez donc faire ceci:
let result = " abc ".trim()
// result == "abc"
Solution Swift 3.0
extension String
{
func trim() -> String
{
return self.trimmingCharacters(in: NSCharacterSet.whitespaces)
}
}
Vous pourrez donc faire ceci:
let result = " Hello World ".trim()
// result = "HelloWorld"
String
?
return self.trimmingCharacters(in: .whitespacesAndNewlines)
Dans Swift 3.0
extension String
{
func trim() -> String
{
return self.trimmingCharacters(in: CharacterSet.whitespaces)
}
}
Et vous pouvez appeler
let result = " Hello World ".trim() /* result = "Hello World" */
let result = " abc ".trimmingCharacters(in: .whitespacesAndNewlines)
Oui, vous pouvez le faire comme ceci:
var str = " this is the answer "
str = str.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
print(srt) // "this is the answer"
CharacterSet est en fait un outil vraiment puissant pour créer une règle de découpage avec beaucoup plus de flexibilité qu'un ensemble prédéfini comme .whitespacesAndNewlines.
Par exemple:
var str = " Hello World !"
let cs = CharacterSet.init(charactersIn: " !")
str = str.trimmingCharacters(in: cs)
print(str) // "Hello World"
Tronquer la chaîne à une longueur spécifique
Si vous avez entré un bloc de phrase / texte et que vous souhaitez enregistrer uniquement la longueur spécifiée hors de ce texte. Ajoutez l'extension suivante à la classe
extension String {
func trunc(_ length: Int) -> String {
if self.characters.count > length {
return self.substring(to: self.characters.index(self.startIndex, offsetBy: length))
} else {
return self
}
}
func trim() -> String{
return self.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
}
}
Utilisation
var str = "Lorem Ipsum is simply dummy text of the printing and typesetting industry."
//str is length 74
print(str)
//O/P: Lorem Ipsum is simply dummy text of the printing and typesetting industry.
str = str.trunc(40)
print(str)
//O/P: Lorem Ipsum is simply dummy text of the
Vous pouvez utiliser la méthode trim () dans une extension Swift String que j'ai écrite https://bit.ly/JString .
var string = "hello "
var trimmed = string.trim()
println(trimmed)// "hello"
extension String {
/// EZSE: Trims white space and new line characters
public mutating func trim() {
self = self.trimmed()
}
/// EZSE: Trims white space and new line characters, returns a new string
public func trimmed() -> String {
return self.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceAndNewlineCharacterSet())
}
}
Tiré de ce repo à moi: https://github.com/goktugyil/EZSwiftExtensions/commit/609fce34a41f98733f97dfd7b4c23b5d16416206
Dans Swift3 XCode 8 Final
Notez que CharacterSet.whitespaces
n'est plus une fonction!
(Ni l'un ni l'autre NSCharacterSet.whitespaces
)
extension String {
func trim() -> String {
return self.trimmingCharacters(in: CharacterSet.whitespaces)
}
}
// Swift 4.0 Supprimer des espaces et de nouvelles lignes
extension String {
func trim() -> String {
return self.trimmingCharacters(in: .whitespacesAndNewlines)
}
}
Vous pouvez également envoyer des caractères que vous souhaitez couper
extension String {
func trim() -> String {
return self.trimmingCharacters(in: .whitespacesAndNewlines)
}
func trim(characterSet:CharacterSet) -> String {
return self.trimmingCharacters(in: characterSet)
}
}
validationMessage = validationMessage.trim(characterSet: CharacterSet(charactersIn: ","))
J'ai créé cette fonction qui permet d'entrer une chaîne et retourne une liste de chaîne coupée par n'importe quel caractère
func Trim(input:String, character:Character)-> [String]
{
var collection:[String] = [String]()
var index = 0
var copy = input
let iterable = input
var trim = input.startIndex.advancedBy(index)
for i in iterable.characters
{
if (i == character)
{
trim = input.startIndex.advancedBy(index)
// apennding to the list
collection.append(copy.substringToIndex(trim))
//cut the input
index += 1
trim = input.startIndex.advancedBy(index)
copy = copy.substringFromIndex(trim)
index = 0
}
else
{
index += 1
}
}
collection.append(copy)
return collection
}
as n'a pas trouvé de moyen de le faire dans swift (compile et fonctionne parfaitement dans swift 2.0)
N'oubliez pas de import Foundation
ou UIKit
.
import Foundation
let trimmedString = " aaa "".trimmingCharacters(in: .whitespaces)
print(trimmedString)
Résultat:
"aaa"
Sinon, vous obtiendrez:
error: value of type 'String' has no member 'trimmingCharacters'
return self.trimmingCharacters(in: .whitespaces)