in reply to Matching Newlines in RegExp
gives the following output:#!/usr/bin/perl -w use strict; my $e = '\\'; # kind of escape char my $s = '\''; # this is a string to use for splitting my $str = "this \n contains \\'\n new lines " . "and single'\nquotes'\n more than\' once"; if( $str =~ m#$/# ) { $s .= "$/"; # ?? right so? } my $re = qr/(?<!\Q$e\E)\Q$s\E/; my @parts = split $re, $str; print scalar(@parts), "\n"; for ( my $i = 0 ; $i < @parts ; $i++ ) { print "$i: $parts[$i]\n"; }
The string was split on '\n, but not \'\n, \n or '.% ./test.pl 3 0: this contains \' new lines and single 1: quotes 2: more than' once
|
---|