Ce devrait être facile, mais je vais avoir un moment difficile de trouver la solution la plus simple.
J'ai besoin d'un NSString
qui est égal à l'autre de la chaîne concaténée avec elle-même un certain nombre de fois.
Pour une meilleure explication, considérez les points suivants python exemple:
>> original = "abc"
"abc"
>> times = 2
2
>> result = original * times
"abcabc"
Tous les conseils?
EDIT:
J'allais poster une solution similaire à celui produit par Mike McMaster, en réponse, d'après ce mise en œuvre de la OmniFrameworks:
// returns a string consisting of 'aLenght' spaces
+ (NSString *)spacesOfLength:(unsigned int)aLength;
{
static NSMutableString *spaces = nil;
static NSLock *spacesLock;
static unsigned int spacesLength;
if (!spaces) {
spaces = [@" " mutableCopy];
spacesLength = [spaces length];
spacesLock = [[NSLock alloc] init];
}
if (spacesLength < aLength) {
[spacesLock lock];
while (spacesLength < aLength) {
[spaces appendString:spaces];
spacesLength += spacesLength;
}
[spacesLock unlock];
}
return [spaces substringToIndex:aLength];
}
Code reproduit dans le fichier:
Frameworks/OmniFoundation/OpenStepExtensions.subproj/NSString-OFExtensions.m
sur le OpenExtensions cadre de l' Omni Cadres par L'Omni Group.