Help for this page

Select Code to Download


  1. or download this
    if (/case1/) { $capture = $1 }
    elsif (/case2/) { $capture = $7 } ...
    
  2. or download this
    ($capture) = grep defined,
        / (?:case1)
        | (?:case2)
        | .../x;