Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering how to convert an NSArray example: ( [43,545,@"Test"] ) to a string in objective-c. An applescript example might be:

set the_array to {43,"Testing", 474343}
set the_array to the_array as string
share|improve this question
5  
@beryllium That question was asked two years after my question. – alexy13 Sep 21 '12 at 10:24

2 Answers

up vote 140 down vote accepted

This does what Jason has, but it's simpler:

NSString * result = [[array valueForKey:@"description"] componentsJoinedByString:@""];
share|improve this answer
Won't this accomplish the same thing as calling [array description]? – TechZen Dec 1 '09 at 20:55
2  
@TechZen - no, because [array description] inserts newlines and the outer parentheses. – Dave DeLong Dec 1 '09 at 21:05
Thanks so much for this! – David Blevins Jan 23 '11 at 0:38
10  
Just want to be sure here, but is NSString * myString = [array componentsJoinedByString:@""]; an acceptable substitute for this? – 0x7fffffff Nov 27 '12 at 17:48
1  
@0x7fffffff: It's equivalent if the array contains only "basic" types. For complex types, it will stringify them as <ClassName: InstanceAddress>. The valueForKey makes it retrieve the specified property for each item. In this case, description is a NSString * property from NSObject, whose getter can be overriden by its subclasses. – jweyrich Apr 25 at 1:19
show 3 more comments

One approach would be to iterate over the array, calling the description message on each item:

NSMutableString * result = [[NSMutableString alloc] init];
for (NSObject * obj in array)
{
    [result appendString:[obj description]];
}
NSLog(@"The concatenated string is %@", result);

Another approach would be to do something based on each item's class:

NSMutableString * result = [[NSMutableString alloc] init];
for (NSObject * obj in array)
{
    if ([obj isKindOfClass:[NSNumber class]])
    {
        // append something
    }
    else
    {
        [result appendString:[obj description]];
    }
}
NSLog(@"The concatenated string is %@", result);

If you want commas and other extraneous information, you can just do:

NSString * result = [array description];
share|improve this answer
If the array has many elements it might be more efficient to first convert all elements to strings (probably using -description) and concat them after that using -componentsJoinedByString: with @"" as the parameter. – Georg Schölly Dec 1 '09 at 20:34
I would go with this method over the one by Dave Delong unless your just debugging. – TechZen Dec 1 '09 at 20:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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