i am accessing web services, which give me result in string array. Say if the length of string array is 3, The first string is "1|123|Bank Of America|111|recall" (| is a delimiter) The second String is "2|456|JP Morgan|22|recall" The Third String is "3|1789|Amex|333|recall"
Now when i parse the SOAP web services, the result is in a NSMutable String. For the First string value , The Value of Mutable String is "1|123|Bank Of America|111|recall" Second time when the parser encounters the return tag, the value of MutableString is "1|123|Bank Of America|111|recall2|456|JP Morgan|22|recall" And Third Time it becomes "1|123|Bank Of America|111|recall2|456|JP Morgan|22|recall3|1789|Amex|333|recall"
I want to display the 3 strings , by removing the delimiter ("|") in a table View, how am i to do it.