I have a NSString I am getting from an array. There are multiple string objects in the array. I want to change the format of the string I get from array and display that new formatted string on UILabel. let me give one example :
String in array : 539000
String I want to display : 5.390.00
Now the problem is that the string I get from array may be 539000, 14200 or 9050. So the string I want to get are : 5.390.00, 142.00, 90.50
The correct format is :
Place a . before last two digits, again place a . before 3 digits from first .
I hope I have put my query in best possible way. Please help.
Thanks,
Nitish