Help for this page

Select Code to Download


  1. or download this
    while (<CONFIG_FILE>) {
     if (/^frz\s+=\s+(\w+);/) {$bar=$1}
    }
    
  2. or download this
    "abc123def"=~/([a-z]+(\d+)(.*))/;
    print "first: $1\nsecond: $2\nthird: $3\n";