Help for this page

Select Code to Download


  1. or download this
            _____________________ date
           /       ______________ desc
    ...
         /       /       /
      ------  ------  ------
    /^[^\t]*\t[^\t]*\t[^\n*]\n\z/
    
  2. or download this
    s/^[^\t]*\t[^\t]*\t\K[^\n*]//;     # 5.10+
    
    s/^([^\t]*\t[^\t]*\t)[^\n*]/$1/;   # Any version