I need to convert unicode string to ascii to make a nice string for friendly url. Dont's ask me why dont do this in server side, please.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There is only a short list of characters that can be safely carried through in a path component of a URL.
All the other characters will have to be either removed (if you're creating a "slug") or escaped. Removal can be done with the regex Escaping can be done with If you wish to achieve an equivalent of ICONV transliteration (that is, turning |
||||
|
|