Help for this page

Select Code to Download


  1. or download this
    $re0 = qr/
              (??{ $re1 })*
           /x;
    
  2. or download this
    $re0 = qr/
              (??{ $re1 }) (??{ $re0 })
              |
              # Nothing
           /x;
    
  3. or download this
    $re0 = qr/
              (??{ $re1 })+
           /x;
    
  4. or download this
    $re0  = qr/
               (??{ $re1 }) (??{ $re0_ })
    ...
               |
               # Nothing
            /x;
    
  5. or download this
    $re0  = qr/
               (??{ $re1 })?
            /x;
    
  6. or download this
    $re0  = qr/
               (??{ $re1 })
               |
               # Nothing
            /x;