Help for this page

Select Code to Download


  1. or download this
    $regexp = qr/^(get|post)\b/i; "GET / HTTP/1.1"=~m/$regexp/ and print "
    +match\n";
    
  2. or download this
    $regexp = qr@get|post@;
    "GET / HTTP/1.1"=~m@^$regexp\s+(\S+)@i and print "match\n";
    
  3. or download this
    $regexp = qr/(\d+)/;
    while ($line=~/$regexp/g) { print "number $1 found\n"; }