Help for this page

Select Code to Download


  1. or download this
     
    while( m/REGEX/g ) {
        ... # use groups only if match successful 
    }
    
  2. or download this
    while( m/REGEX/g ) {
        last unless $2;
        ...  
    }