Search Results

9
votes

How can I find the first occurrence of a pattern in a string from some starting position?

You can't really count with regexes, but you can do something like this: pos $string = $start_from; $string =~ m/\G # anchor to previous pos() ((?:...)*?) # capt …
1
vote

What are canonical, efficient, or concise ways to slurp a file into a string in Perl?

This is neither fast, nor platform independent, and really evil, but it's short (and I've seen this in Larry Wall's code ;-): my $contents = `cat $file`; Kids, do …