Help for this page

Select Code to Download


  1. or download this
    /(<p> )    # #1
    (.+(?!<p>)) # #2
    (features\: <ul>)/ix) # #3
    
  2. or download this
    my ($first, $second, $third) = ($test =~ /(<p> ).+?<p>(.+)(features: <ul>)/i);