Pregunta

I'm copying phone number from iPhone address book to a text field. In text field it is showing as 1 (234) 567-8901. I want format it to 12345678901.
Any help?

¿Fue útil?

Solución

You can use stringByReplacingOccurrencesOfString: withString: to remove characters you don't want such as @"(" with @""

EDIT: Better solution.

NSCharacterSet *charSet =[NSCharacterSet characterSetWithCharactersInString:@"()- "];
cleanedPhoneNumber = [phoneNumberString stringByTrimmingCharactersInSet:charSet];  
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top