surnameFIEld.text = "Fal à èà ò l'opo"; // remove space and apostropheNsstring *surnarmeinput = [[surnameFIEld.text stringByReplacingOccurrencesOfString:@" " withString:@""] stringByReplacingOccurrencesOfString:@"'" withString:@""];
结果“Falaeaolopo”
解决方法// convert to a data object,using a lossy conversion to ASCIINSData *asciIEncoded = [yourOriginalString dataUsingEnCoding:NSASCIIStringEnCoding allowLossyConversion:YES];// take the data object and recreate a string using the lossy conversionNsstring *other = [[Nsstring alloc] initWithData:asciIEncoded enCoding:NSASCIIStringEnCoding];// relinquish ownership[other autorelease];
这将删除所有的重音.删除所有空格
Nsstring *yourFinalString = [other stringByReplacingOccurrencesOfString:@" " withString:@""];
删除重音的第一部分,从this线程中的dreamlax的答案复制的代码..
总结以上是内存溢出为你收集整理的ios – 按字符串删除所有重音符号全部内容,希望文章能够帮你解决ios – 按字符串删除所有重音符号所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)