Help for this page

Select Code to Download


  1. or download this
    open(FILE, 'my_file.txt');
    while ($line = <FILE>) {
    ...
         print "<br>$line_parts[0]\n";
    }
    close(FILE);
    
  2. or download this
    1.1.2|W|foo|abc
    
  3. or download this
    1.1.2
    
  4. or download this
    $delimiter = "\|";
    .....
         @line_parts = split(/$delimiter/, $line);
    
  5. or download this
    1
    
  6. or download this
    $delimiter = "|";
    .....
    @line_parts = split(/\$delimiter/, $line);