Help for this page

Select Code to Download


  1. or download this
    $internal_format_string =~ s/\n//g;
    
  2. or download this
    require Encode;
    my $string_in_utf8 = Encode::encode_utf8($internal_format_string);
    $string_in_utf8 =~ s/\n//g;
    
  3. or download this
    $internal_format_string =~ s/\x{0A}//g;