Help for this page

Select Code to Download


  1. or download this
    if (/\bAPI|APIN|UWI\s*\./) { $myvar = $something; }
    
  2. or download this
    if (/\bAPI|APIN|UWI\s*\./) { somesub($matchedpart); }
    
  3. or download this
    if (/\bAPI|APIN|UWI\s*./) {
         $matchedpart =~ /\bAPI|APIN|UWI\s*./;
         somesub($matchedpart);
    }