vote up 4 vote down star
6

Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C or shortcuts for working with NSString or other objects in general?

e.g. I'd like to make this:

NSString *myString = @"This";
NSString *test = [myString stringByAppendingString:@" is just a test"];

something more like this:

string myString = "This";
string test = myString + " is just a test";
flag

80% accept rate

5 Answers

vote up 18 vote down check

I'm guessing you're not happy with multiple appends (a+b+c+d), in which case you could do:

NSLog(@"%@", [Util append:one, @" ", two, nil]); // "one two"
NSLog(@"%@", [Util append:three, @"/", two, @"/", one, nil]); // three/two/one

using something like

+ (NSString *) append:(id) first, ...
{
    NSString * result = @"";
    id eachArg;
    va_list alist;
    if(first)
    {
    	result = [result stringByAppendingString:first];
    	va_start(alist, first);
    	while (eachArg = va_arg(alist, id)) 
    		result = [result stringByAppendingString:eachArg];
    	va_end(alist);
    }
    return result;
}

but you'd get the same result using:

[NSString stringWithFormat:@"%@/%@/%@", three, two, one];
link|flag
1  
+1 for the simple stringWithFormat solution – dbr Jul 18 at 5:56
Your second solution is a lot nicer :) – pablasso Aug 1 at 3:26
vote up 2 vote down

Two answers I can think of... neither is particularly as pleasant as just having a concatenation operator.

First, use an NSMutableString, which has an appendString method, removing some of the need for extra temp strings.

Second, use an NSArray to concatenate via the componentsJoinedByString method.

link|flag
vote up 0 vote down

The only way to make c = [a stringByAppendingString: b] any shorter is to use autocomplete at around the st point. The + operator is part of C, which doesn't know about Objective-C objects.

link|flag
vote up 0 vote down
NSString *label1 = @"Process Name: ";
NSString *label2 = @"Process Id: ";
NSString *processName = [[NSProcessInfo processInfo] processName];
NSString *processID = [NSString stringWithFormat:@"%d", [[NSProcessInfo processInfo] processIdentifier]];
NSString *testConcat = [NSString stringWithFormat:@"%@ %@ %@ %@", label1, processName, label2, processID];
link|flag
vote up 1 vote down

Shortcut by creating AppendString (AS) macro ...

#define AS(A,B)    [(A) stringByAppendingString:(B)]
NSString *myString = @"This"; NSString *test = AS(myString,@" is just a test");
link|flag
Cool! I still think the Util above is a much more elegant solution; you can append only one string with this macro, right? – Typeoneerror Jul 18 at 13:02
True, the AS macro above does one append per line of code. If multiple appends are a common need, then more macros can be created. For example, a macro to append two strings: <pre> #define A2S(A,B,C) [[(A) stringByAppendingString:(B)] stringByAppendingString:(C)] </pre> – Jim Logan Jul 18 at 23:54
Or, simply shorten the typing required with a macro like "#define AS stringByAppendingString", then just use "AS" where your would normally type "stringByAppendingString", and enjoy multiple appends per line of code. – Jim Logan Jul 19 at 0:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.