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::Parkinson - Dil Parkinson's transliteration of Arabic

Author

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

Description

       Dil Parkinson's notation is a one-to-one transliteration of the Arabic script for Modern Standard Arabic,
       using lower ASCII characters to encode the graphemes of the original script.

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

Name

       Encode::Arabic::Parkinson - Dil Parkinson's transliteration of Arabic

See Also

       Encode::Arabic, Encode, Encode::Encoding

Synopsis

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

           while ($line = <>) {                    # Dil Parkinson's mapping into the Arabic script

               print encode 'utf8', decode 'parkinson', $line;     # 'Parkinson' alias 'Dil'
           }

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

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

See Also