- or download this
ex. $_table{'Ö'}; # gives 'Ö'
- or download this
my $bytes = pack( "C*", unpack( "U0C*", $$sgml_r ));
- or download this
use bytes;
.... #all will happen wrapped here
no bytes;
- or download this
$bytes =~ s/([^\ -\~]+.*)/$self->_fixup($1)/ego;
- or download this
$$sgml_r =~ s/(.)/$self->_mapchar($1)/eg;
- or download this
sub _mapchar {
my ($char) = @_;
...
}
return $char;
}