Help for this page

Select Code to Download


  1. or download this
    my $text = "line 1\0line 2\0line 3";
    IO::Handle->format_line_break_characters("\0");
    ...
          $text
    .
    write;
    
  2. or download this
    Text: line 1line 2line 3
    
  3. or download this
    my $text = "line 1\nline 2\nline 3";
    IO::Handle->format_line_break_characters("\0");
    ...
          $text
    .
    write;
    
  4. or download this
    Text: line 1
          line 2
          line 3
    
  5. or download this
    my $text = "line 1\nline 2\nline 3";
    ####IO::Handle->format_line_break_characters("\0");
    ...
          $text
    .
    write;
    
  6. or download this
    Text: line 1
          line 2
          line 3