Je dois supprimer des espaces à la fin d'une chaîne. Comment puis je faire ça? Exemple: si la chaîne est "Hello "
, elle doit devenir "Hello"
Utilisez - stringByTrimmingCharactersInSet:
NSString *string = @" this text has spaces before and after ";
NSString *trimmedString = [string stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
(Cela supprimera les caractères d'espacement des deux côtés).
Swift 3
let string = " this text has spaces before and after "
let trimmedString = string.trimmingCharacters(in: .whitespacesAndNewlines)
Une autre solution consiste à créer une chaîne mutable:
//make mutable string
NSMutableString *stringToTrim = [@" i needz trim " mutableCopy];
//pass it by reference to CFStringTrimSpace
CFStringTrimWhiteSpace((__bridge CFMutableStringRef) stringToTrim);
//stringToTrim is now "i needz trim"
Voici...
- (NSString *)removeEndSpaceFrom:(NSString *)strtoremove{
NSUInteger location = 0;
unichar charBuffer[[strtoremove length]];
[strtoremove getCharacters:charBuffer];
int i = 0;
for(i = [strtoremove length]; i >0; i--) {
NSCharacterSet* charSet = [NSCharacterSet whitespaceCharacterSet];
if(![charSet characterIsMember:charBuffer[i - 1]]) {
break;
}
}
return [strtoremove substringWithRange:NSMakeRange(location, i - location)];
}
Alors maintenant, appelez-le. En supposant que vous avez une chaîne qui a des espaces à l'avant et des espaces à la fin et que vous souhaitez simplement supprimer les espaces à la fin, vous pouvez l'appeler comme suit:
NSString *oneTwoThree = @" TestString ";
NSString *resultString;
resultString = [self removeEndSpaceFrom:oneTwoThree];
resultString
n'aura alors aucun espace à la fin.
Pour supprimer les espaces du début et de la fin d'une chaîne dans Swift:
string.trimmingCharacters(in: .whitespacesAndNewlines)
string.stringByTrimmingCharactersInSet(.whitespaceAndNewlineCharacterSet()))
NSString *trimmedString = [string stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
//for remove whitespace and new line character
NSString *trimmedString = [string stringByTrimmingCharactersInSet:
[NSCharacterSet punctuationCharacterSet]];
//for remove characters in punctuation category
Il y a beaucoup d'autres CharacterSets. Vérifiez vous-même selon vos besoins.
Swift version
coupe uniquement les espaces à la fin de la chaîne:
private func removingSpacesAtTheEndOfAString(var str: String) -> String {
var i: Int = countElements(str) - 1, j: Int = i
while(i >= 0 && str[advance(str.startIndex, i)] == " ") {
--i
}
return str.substringWithRange(Range<String.Index>(start: str.startIndex, end: advance(str.endIndex, -(j - i))))
}
coupe les espaces des deux côtés de la chaîne:
var str: String = " Yolo "
var trimmedStr: String = str.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())
Cela ne supprimera que les caractères de fin de votre choix.
func trimRight(theString: String, charSet: NSCharacterSet) -> String {
var newString = theString
while String(newString.characters.last).rangeOfCharacterFromSet(charSet) != nil {
newString = String(newString.characters.dropLast())
}
return newString
}
Une solution simple pour couper seulement une extrémité au lieu des deux dans Objective-C:
@implementation NSString (category)
/// trims the characters at the end
- (NSString *)stringByTrimmingSuffixCharactersInSet:(NSCharacterSet *)characterSet {
NSUInteger i = self.length;
while (i > 0 && [characterSet characterIsMember:[self characterAtIndex:i - 1]]) {
i--;
}
return [self substringToIndex:i];
}
@end
Et un utilitaire symétrique pour couper le début seulement:
@implementation NSString (category)
/// trims the characters at the beginning
- (NSString *)stringByTrimmingPrefixCharactersInSet:(NSCharacterSet *)characterSet {
NSUInteger i = 0;
while (i < self.length && [characterSet characterIsMember:[self characterAtIndex:i]]) {
i++;
}
return [self substringFromIndex:i];
}
@end
Pour couper tous les finaux espaces (je suppose que c’est en fait votre intention), voici ce qui est plutôt propre manière concise de le faire:
NSString *trimmedString = [string stringByReplacingOccurrencesOfString:@"\\s+$" withString:@"" options:NSRegularExpressionSearch range:NSMakeRange(0, string.length)];
Une ligne, avec une pincée de regex.
dans Swift
Pour réduire l’espace et les nouvelles lignes des deux côtés de la chaîne:
var url: String = "\n http://example.com/xyz.mp4 "
var trimmedUrl: String = url.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceAndNewlineCharacterSet())
La solution est décrite ici: Comment supprimer les espaces blancs du côté droit de NSString?
Ajoutez les catégories suivantes à NSString:
- (NSString *)stringByTrimmingTrailingCharactersInSet:(NSCharacterSet *)characterSet {
NSRange rangeOfLastWantedCharacter = [self rangeOfCharacterFromSet:[characterSet invertedSet]
options:NSBackwardsSearch];
if (rangeOfLastWantedCharacter.location == NSNotFound) {
return @"";
}
return [self substringToIndex:rangeOfLastWantedCharacter.location+1]; // non-inclusive
}
- (NSString *)stringByTrimmingTrailingWhitespaceAndNewlineCharacters {
return [self stringByTrimmingTrailingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
}
Et vous l'utilisez comme tel:
[yourNSString stringByTrimmingTrailingWhitespaceAndNewlineCharacters]
Je suis venu avec cette fonction, qui se comporte fondamentalement de la même manière que dans la réponse d'Alex:
-(NSString*)trimLastSpace:(NSString*)str{
int i = str.length - 1;
for (; i >= 0 && [str characterAtIndex:i] == ' '; i--);
return [str substringToIndex:i + 1];
}
whitespaceCharacterSet
outre l'espace, le caractère de tabulation est également inclus, ce qui dans mon cas n'a pas pu apparaître. Donc, je suppose qu'une simple comparaison pourrait suffire.