web-dev-qa-db-fra.com

Swift a-t-il une méthode de rognage sur String?

Swift a-t-il une méthode de rognage sur String? Par exemple:

let result = " abc ".trim()
// result == "abc"
334
tounaobun

Voici comment supprimer tous les espaces du début et de la fin d'une 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.

744
Sivanraj M

Mettez ce code dans un fichier de votre projet, quelque chose aime Utils.Swift:

extension String
{   
    func trim() -> String
    {
        return self.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())
    }
}

Donc vous pourrez faire ceci:

let result = " abc ".trim()
// result == "abc"

Swift 3.0 Solution

extension String
{   
    func trim() -> String
   {
    return self.trimmingCharacters(in: NSCharacterSet.whitespaces)
   }
}

Donc vous pourrez faire ceci:

let result = " Hello World ".trim()
// result = "HelloWorld"
116
Thiago Arreguy

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" */
54
Bishow Gurung

Swift 4.2

let trimmedString = " abc ".trimmingCharacters(in: .whitespaces)
 //trimmedString == "abc"
35
Saranjith

Swift 3

let result = " abc ".trimmingCharacters(in: .whitespacesAndNewlines)
19
Warif Akhand Rishi

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"
8
William Falcon

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 tel que.

Par exemple:

var str = " Hello World !"
let cs = CharacterSet.init(charactersIn: " !")
str = str.trimmingCharacters(in: cs)
print(str) // "Hello World"
7
Amin Aliari

Tronquer une 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. Ajouter 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 
6
ViJay Avhad

Une autre manière similaire:

extension String {
    var trimmed:String {
        return self.trimmingCharacters(in: CharacterSet.whitespaces)
    }
}

Utilisation: 

let trimmedString = "myString ".trimmed
5
user23

Dans Swift3 XCode 8 Final

Notez que le CharacterSet.whitespaces n'est plus une fonction!

(Ni NSCharacterSet.whitespaces non plus)

extension String {
    func trim() -> String {
        return self.trimmingCharacters(in: CharacterSet.whitespaces)
    }
}
4
Martin Algesten
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())
    }
}

Extrait de mon repo: https://github.com/goktugyil/EZSwiftExtensions/commit/609fce34a41f98733f97dfd7b4c23b5d16416206

3
Esqarrouth

Vous pouvez également envoyer des personnages que vous voulez 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: ","))
1
Varun Naharia

N'oubliez pas de import Foundation ou UIKit.

import Foundation
let trimmedString = "   aaa  "".trimmingCharacters(in: .whitespaces)
print(trimmedString)

Résultat: 

"aaa"

Sinon, vous aurez: 

error: value of type 'String' has no member 'trimmingCharacters'
    return self.trimmingCharacters(in: .whitespaces)
1
NonCreature0714

// Swift 4.0 Supprimer les espaces et les nouvelles lignes

extension String {


   func trim() -> String {

       return self.trimmingCharacters(in: .whitespacesAndNewlines)

   }

}

1
Danielvgftv

J'ai créé cette fonction qui permet d'entrer une chaîne et renvoie une liste de chaînes coupées 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

}

comme n'a pas trouvé un moyen de faire cela dans Swift (compile et fonctionne parfaitement dans Swift 2.0)

0
Yeis Gallegos