Réponses:
Vous pouvez utiliser la méthode
- (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target
withString:(NSString *)replacement
... pour obtenir une nouvelle chaîne avec une sous-chaîne remplacée (voir la NSString
documentation pour les autres)
Exemple d'utilisation
NSString *str = @"This is a string";
str = [str stringByReplacingOccurrencesOfString:@"string"
withString:@"duck"];
str
changé dans le processus
NSString
les objets sont immuables (ils ne peuvent pas être modifiés), mais il existe une sous-classe modifiable NSMutableString
, qui vous propose plusieurs méthodes pour remplacer des caractères dans une chaîne. C'est probablement votre meilleur pari.
Si vous souhaitez remplacer plusieurs chaînes:
NSString *s = @"foo/bar:baz.foo";
NSCharacterSet *doNotWant = [NSCharacterSet characterSetWithCharactersInString:@"/:."];
s = [[s componentsSeparatedByCharactersInSet: doNotWant] componentsJoinedByString: @""];
NSLog(@"%@", s); // => foobarbazfoo
Il a également un remplacement de chaîne possible avec stringByReplacingCharactersInRange: withString:
for (int i = 0; i < card.length - 4; i++) {
if (![[card substringWithRange:NSMakeRange(i, 1)] isEqual:@" "]) {
NSRange range = NSMakeRange(i, 1);
card = [card stringByReplacingCharactersInRange:range withString:@"*"];
}
} //out: **** **** **** 1234
Le problème existe dans les anciennes versions sur iOS. dans le dernier, la droite à gauche fonctionne bien. Ce que j'ai fait est le suivant:
je vérifie d'abord la version iOS:
if (![self compareCurVersionTo:4 minor:3 point:0])
Que:
// set RTL on the start on each line (except the first)
myUITextView.text = [myUITextView.text stringByReplacingOccurrencesOfString:@"\n"
withString:@"\u202B\n"];
NSString *stringreplace=[yourString stringByReplacingOccurrencesOfString:@"search" withString:@"new_string"];
str
ça m'a époustouflé.