Help for this page

Select Code to Download


  1. or download this
    while (<DATA>)
    {
      next unless /^~/;# Skip line unless it starts with ~
    ...
    {
      print;
    }
    
  2. or download this
      pos($_) = -1; 
      s/(^~ | \G) .*? \K  _  /+/gx;