web-dev-qa-db-fra.com

Vérifier si un NSString est juste constitué d'espaces

Je veux vérifier si une chaîne particulière est juste composée d'espaces. Cela peut être n'importe quel nombre d'espaces, y compris zéro. Quelle est la meilleure façon de déterminer cela?

47
Suchi
NSString *str = @"         ";
NSCharacterSet *set = [NSCharacterSet whitespaceCharacterSet];
if ([[str stringByTrimmingCharactersInSet: set] length] == 0)
{
    // String contains only whitespace.
}
102
Alexsander Akers

Essayez de supprimer les espaces et de le comparer à @ "":

NSString *probablyEmpty = [myString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
BOOL wereOnlySpaces = [probablyEmpty isEqualToString:@""];
8
Eimantas

Il est nettement plus rapide de vérifier la plage de caractères non-blancs au lieu de couper la chaîne entière.

NSCharacterSet *inverted = [[NSCharacterSet whitespaceAndNewlineCharacterSet] invertedSet];
NSRange range = [string rangeOfCharacterFromSet:inverted];
BOOL empty = (range.location == NSNotFound);

Notez que "rempli" est probablement le cas le plus courant avec une combinaison d'espaces et de texte.

testSpeedOfSearchFilled - 0.012 sec
testSpeedOfTrimFilled - 0.475 sec
testSpeedOfSearchEmpty - 1.794 sec
testSpeedOfTrimEmpty - 3.032 sec

Les tests sont exécutés sur mon iPhone 6 + . Code ici . Collez dans une sous-classe XCTestCase.

8
arsenius

Essaye ça:

[mystring stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

ou

[mystring stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
2
picciano

Je suis vraiment surpris d’être le premier à suggérer/ Regular Expression

NSString *string = @"         ";
NSString *pattern = @"^\\s*$";
NSRegularExpression *expression = [[NSRegularExpression alloc] initWithPattern:pattern options:0 error:nil];
NSArray *matches = [expression matchesInString:string options:0 range:NSMakeRange(0, string.length)];
BOOL isOnlyWhitespace = matches.count;

Ou à Swift:

let string = "         "
let pattern = "^\\s*$"
let expression = try! NSRegularExpression(pattern:pattern, options:[])
let matches = expression.matches(in: string, options: [], range:NSRange(location: 0, length: string.utf16.count))
let isOnlyWhitespace = !matches.isEmpty
1
vadian

Doit utiliser ce code pour Swift 3:

func isEmptyOrContainsOnlySpaces() -> Bool {

    return self.trimmingCharacters(in: .whitespaces).characters.count == 0
}
0
alexmorhun

Voici le code de version Swift pour le même,

var str = "Hello World" 
if count(str.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())) == 0 {
     // String is empty or contains only white spaces
}
else {
    // String is not empty and contains other characters
}

Ou vous pouvez écrire une simple extension de chaîne comme ci-dessous et utiliser le même code avec une meilleure lisibilité à plusieurs endroits.

extension String {
    func isEmptyOrContainsOnlySpaces() -> Bool {
        return count(self.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())) == 0
    }
}

et juste l'appeler en utilisant n'importe quelle chaîne comme celle-ci,

var str1 = "   "
if str.isEmptyOrContainsOnlySpaces() {
    // custom code e.g Show an alert
}
0
Rameswar Prasad

Coupez l'espace et vérifiez le nombre de caractères restants. Jetez un oeil à ce post ici

0
JAM

Voici une catégorie facilement réutilisable sur NSString basée sur la réponse de @Alexander Akers, mais qui renvoie également YES si la chaîne contient "de nouvelles lignes" ...

@interface NSString (WhiteSpaceDetect)
@property (readonly) BOOL isOnlyWhitespace;
@end
@implementation NSString (WhiteSpaceDetect)
- (BOOL) isOnlyWhitespace { 
  return ![self stringByTrimmingCharactersInSet:
          [NSCharacterSet whitespaceAndNewlineCharacterSet]].length;
}
@end

et pour ceux d'entre vous des âmes peu confiants là-bas ..

#define WHITE_TEST(x) for (id z in x) printf("\"%s\" : %s\n",[z UTF8String], [z isOnlyWhitespace] ? "YES" :"NO")

WHITE_TEST(({ @[

    @"Applebottom",
    @"jeans\n",
    @"\n",
    @""
    "",
    @"   \
    \
    ",
    @"   "
];}));

"Applebottom" : NO
"jeans
" : NO
"
" : YES
"" : YES
"   " : YES
"   " : YES
0
Alex Gray