Help for this page

Select Code to Download


  1. or download this
    open PLAYLIST, ">", "playlist.plp" 
        or die "Couldn't open playlist.plp: $!\n";
    ...
    print PLAYLIST "abcd\r\n";
    $\ = "\r\n";
    print PLAYLIST "efgh";
    
  2. or download this
    open PLAYLIST, ">:raw:encoding(utf16le)", "playlist.plp" 
        or die "Couldn't open playlist.plp: $!\n";
    print PLAYLIST "abcd\r\n";
    $\ = "\r\n";
    print PLAYLIST "efgh";