How can I convert Cyrillic string into English in c#

前端 未结 10 1003
醉酒成梦
醉酒成梦 2020-12-31 21:05

Is it posible to convert Cyrillic string to English(Latin) in c#? For example I need to convert \"Петролеум\" in \"Petroleum\". Plus I forgot to mention that if I have Cyril

10条回答
  •  独厮守ぢ
    2020-12-31 21:57

    http://code.google.com/apis/ajaxlanguage/documentation/#Transliteration

    Google offer this AJAX based transliteration service. This way you can avoid computing transliterations yourself and let Google do them on the fly. It'd mean letting the client-side make the request to Google, so this means your app would need to have some kind of web-based output for this solution to work.

提交回复
热议问题