Encode::Arabic::Parkinson(3) Dil Parkinson's transliteration of Arabic

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", $_'

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.

AUTHOR

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

COPYRIGHT AND LICENSE

Copyright (C) 2003-2012 Otakar Smrz

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.