1

Possible Duplicate:
Replace letters in a string

I have some texts "anh yêu em"

I want to convert to this text "anh yeu em".

Does anyone know to convert this text "anh yêu em" to "anh yeu em" in the Objective-C?

Many thanks,

Community
  • 1
  • 1
Duc Nguyen
  • 168
  • 2
  • 11

1 Answers1

2

You can use NSString dataUsingEncoding to convert vietnamese unicode character to equivalent ascii character.

For details, pls follow this url nsstring-unicode-to-ascii-equivalent

Community
  • 1
  • 1