NSInteger someNumber = 211242;
I would like to know some function so that would return a string similar to "Two lakh eleven thousand two hundred forty-two Rupees only"
NSInteger someNumber = 211242;
I would like to know some function so that would return a string similar to "Two lakh eleven thousand two hundred forty-two Rupees only"
Copyright © 2021 Jogjafile Inc.
Here is the solution to do that. You have to use NSNumberFormatter.
Swift Solution: