Help for this page

Select Code to Download


  1. or download this
    $mystring =~
       s{(\d{3,5})}
       {<b><a href='lookup.cgi?id=$1</a>}g;
    
  2. or download this
    if( $path =~ /\/path\/to\/file/ ) { ... }
    
  3. or download this
    if( $path =~ m{/path/to/file} ) { ... }