logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Encode::Arabic::Habash - Habash-Soudi-Buckwalter transliteration of Arabic

Author

       Otakar Smrz "<otakar-smrz users.sf.net>", <http://otakar-smrz.users.sf.net/>

Description

       Habash-Soudi-Buckwalter notation is a one-to-one transliteration of the graphemes of the Arabic script
       into various symbols of Unicode defined in <http://scholar.google.com/scholar?q=habash+soudi+buckwalter>.

   IMPLEMENTATION
       Similar to that in Encode::Arabic::Buckwalter.

Name

       Encode::Arabic::Habash - Habash-Soudi-Buckwalter transliteration of Arabic

See Also

       Encode::Arabic, Encode, Encode::Encoding

Synopsis

           use Encode::Arabic::Habash;             # imports just like 'use Encode' would, plus more

           while ($line = <>) {                    # Habash-Soudi-Buckwalter mapping into the Arabic script

               print encode 'utf8', decode 'habash', $line;        # 'Habash' alias 'Soudi' alias 'HSB'
           }

           # shell filter of data, e.g. in *n*x systems instead of viewing the Arabic script proper

           % perl -MEncode::Arabic::Habash -pe '$_ = encode "habash", decode "utf8", $_'

See Also