Help for this page

Select Code to Download


  1. or download this
     
     1.1.1.txt
     1.1.txt
     1.txt
     2.txt
     3.txt
    
  2. or download this
    perl -e "print grep {/\d+\.txt/} glob('*.txt');"
    1.1.1.txt1.1.txt1.txt2.txt3.txt
    
  3. or download this
    perl -e "$s=qq(1.1.1); if ($s=~/\d+/) {print 'it is a number'};"
    it is a number
    
  4. or download this
    perl -e "$s=qq(1.1.1); if ($s=~/\d+?/) {print 'it is a number'};"
    it is a number