Help for this page

Select Code to Download


  1. or download this
    use Encode;
    
    my $string;
    
    Encode::from_to($string, 'utf-16', 'utf-8');
    
  2. or download this
    my @digets = $string =~ /\p{Digit}+/g;