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", $_'
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.AUTHOR
Otakar Smrz "<otakar-smrz users.sf.net>", <http://otakar-smrz.users.sf.net/>COPYRIGHT AND LICENSE
Copyright (C) 2003-2012 Otakar SmrzThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.