Help for this page

Select Code to Download


  1. or download this
    (?:\z(?{ die })|)
    
  2. or download this
    (?(?=\z)(?{ die }))
    
  3. or download this
    .*?abc(def)?
    
  4. or download this
    (?(?!\z)
        .*?
    ...
        |
        (?{ $PREMATURE_INPUT_END++ })
    )