Having a great deal of trouble finding a way to (Formating) remove comma and if no comma found then leave as it is.
What I am hoping to achieve is taking the result of a distance and displaying it in a Label so that the format is:
4589.163
instead of
4,589.163
If no comma separator found then leave it as it is
479.996
My code:
if tempDistanceString.contains(",") {
let newString = tempDistanceString.replacingOccurrences(of: ",", with: "")
}
I'm looking for Formatter if supportable to my requirement.
Any help would be greatly appreciated.
You can use numberFormatter with property
usesGroupingSeparatorset to falseFor example: