Name: Anonymous 2010-06-05 0:56
Is there any script, preferably bash or Perl, that will convert normal ASCII ("deal") into wide-width latin ("deal")?
Thanks.
Thanks.
#!/usr/bin/perl -pl
use encoding utf8;
y/!-~/\x{ff01}-\x{ff5e}/;#!/usr/bin/perl -l40
use encoding utf8;
y/!-~/\x{ff01}-\x{ff5e}/ and print for @ARGV;