- or download this
while( $file =~ /\Q$start\E(.*?)\Q$end\E/sg )
{
$a = $1;
...
}
print $match, "\n";
}
- or download this
blah blah
/* comment 1 */
...
*/
outer
*/
- or download this
prompt$ regex.pl '/*' '*/'
/* comment 1 */
/* comment 2 */
...
*/
outer
*/