When I copy number phone from phone app I get results like this \u{e2}05xxxxxx49\u{e2}
I need to remove this character \u{e2}
from the left and right of the number
to get a result like this 05xxxxxx49
var str = number
str = str!.replacingOccurrences(of: "\u{e2}", with: "")
print(str!)
thanks for all finally I know how is it