I've a string with this kind of value /finocchi$FINOCCHamelo
Now I need a new string with only this part of the word FINOCCHamelo
I've try this:
NSString * newString = [item.label stringByReplacingOccurrencesOfString:@"$" withString:@""];
But it's not right becouse change the $ with blank char. I need to filter the string afther $ How Can I do?