Help for this page
#!/usr/bin/perl use strict; ... 0) (?^x:^ " (?: [^"\\]++ | \\. )*+ " ) ==> NOT MATCHED! 1) (?^x:^ " (?: [^"\\]++ | (?: \\. )++ )*+ " ) ==> MATCHED! 2) (?^x:^ " (?: [^"\\]+ | (?: \\. )+ )*+ " ) ==> MATCHED!
perl -v ... (with 58 registered patches, see perl -V for more detail) Copyright 1987-2015, Larry Wall