J'ai besoin de supprimer des espaces à la fin d'une chaîne. Comment puis je faire ça? Exemple: si une chaîne est, "Hello "
elle doit devenir"Hello"
J'ai besoin de supprimer des espaces à la fin d'une chaîne. Comment puis je faire ça? Exemple: si une chaîne est, "Hello "
elle doit devenir"Hello"
Réponses:
Tiré de cette réponse ici: https://stackoverflow.com/a/5691567/251012
- (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
}
whitespaceAndNewlineCharacterSet
.
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. Supposons que vous ayez une chaîne avec des espaces à l'avant et des espaces à la fin et que vous vouliez simplement supprimer les espaces à la fin, vous pouvez l'appeler comme ceci:
NSString *oneTwoThree = @" TestString ";
NSString *resultString;
resultString = [self removeEndSpaceFrom:oneTwoThree];
resultString
n'aura alors aucun espace à la fin.
Pour supprimer des espaces uniquement au début et à la fin d'une chaîne dans Swift:
string.trimmingCharacters(in: .whitespacesAndNewlines)
string.stringByTrimmingCharactersInSet(.whitespaceAndNewlineCharacterSet()))
stringByTrimmigCharactersInSet:
- "Renvoie une nouvelle chaîne créée en supprimant des deux extrémités du récepteur les caractères contenus dans un jeu de caractères donné." developer.apple.com/reference/foundation/nsstring/…
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 existe de nombreux autres jeux de caractères. Vérifiez-le vous-même selon vos besoins.
Version Swift
Ajuste 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))))
}
Découpe les espaces des deux côtés de la chaîne:
var str: String = " Yolo "
var trimmedStr: String = str.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())
Cela supprimera uniquement 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 extrémités 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 uniquement:
@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 caractères d'espacement fin (je suppose que c'est en fait votre intention), ce qui suit est une façon assez propre et concise de le faire.
Swift 5:
let trimmedString = string.replacingOccurrences(of: "\\s+$", with: "", options: .regularExpression)
Objectif c:
NSString *trimmedString = [string stringByReplacingOccurrencesOfString:@"\\s+$" withString:@"" options:NSRegularExpressionSearch range:NSMakeRange(0, string.length)];
Une ligne, avec un trait de regex.
La solution est décrite ici: Comment supprimer les espaces blancs de l'extrémité droite 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]
J'ai créé cette fonction, qui se comporte essentiellement 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 lui-même comprend également un caractère de tabulation, qui dans mon cas ne pouvait pas apparaître. Donc je suppose qu'une simple comparaison pourrait suffire.
let string = "Test Trimmed String"
Pour supprimer les espaces blancs et les nouvelles lignes, utilisez le code ci-dessous: -
laissez str_trimmed = yourString.trimmingCharacters (dans: .whitespacesAndNewlines)
Pour supprimer uniquement les espaces de la chaîne, utilisez le code ci-dessous: -
laissez str_trimmed = yourString.trimmingCharacters (dans: .whitespaces)
NSString* NSStringWithoutSpace(NSString* string)
{
return [string stringByReplacingOccurrencesOfString:@" " withString:@""];
}