Help for this page

Select Code to Download


  1. or download this
    /"((?:[^"]+(?=")|"")*)"(?!")/
    #          ^^^^^
    
  2. or download this
    /"((?:(?>[^"]+)|"")*)"(?!")/
    #     ^^^     ^
    
  3. or download this
    if(  /"((?:[^"]+|"")*)("?)(?!")/  ) {
    #                     ^ ^^
        die "Unclosed quote ($1)..." if ! $2;