componentsSeparatedByString return 1 object when string is empty

1.8k Views Asked by At

I convert string into array by componentsSeparatedByString. It return array perfect. but when string is empty return 1 object.

why this happen ?

NSMutableArray *imagesList=[[[productDetail objectForKey:@"productImage"] componentsSeparatedByString:@","]mutableCopy];
2

There are 2 best solutions below

0
On BEST ANSWER

It is because, you are passing empty string("") and componentsSeparatedByString is trying to separate your string by comma(,) but their is no comma(,) in your string so it is returning 1 array item(that is "").

NSMutableArray *imagesList = [[NSMutableArray alloc]init];    
if(![productDetail isEqualToString:@""]) {   
    imagesList=[[[productDetail objectForKey:@"productImage"] componentsSeparatedByString:@","]mutableCopy];
}
0
On

If the delimiter is not found in string, the original string is returned in the array.