Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

transforming a hebrew word into english characters

I need a java open source code that transforms a hebrew string into a string with english characters for example : transform the word "שלום" into "shalom"

like image 329
Mickey Haim Avatar asked Nov 04 '22 13:11

Mickey Haim


1 Answers

You can use ICU transliterator. http://userguide.icu-project.org/transforms/general#TOC-Script-Transliteration

If that doesnt meet your need look around for Hebrew transliterator you will definitely find one.

like image 56
specialscope Avatar answered Nov 14 '22 23:11

specialscope