Help for this page

Select Code to Download


  1. or download this
    use Encode qw(encode decode);
    my $str = # some input method here;
    $str = encode("utf8", $str);
    # do your pattern matching here
    
    print decode("utf8", $str);