NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Re: Line Noise (Score:1)
It’s not Perl that’s line noise, it’s the regex syntax. Last night I wrote this:
s{/(?!\.\.)[^/]+/+\.\.(?=/|\z)}{}gRe: Line Noise (Score:2)
So it cleans up pathnames to remove
/foo/../bar/../bazto be juRe: Line Noise (Score:1)
Hmm, actually, that has a bug. The negative look-ahead must contain a trailing slash, otherwise the pattern will erroneously fail to match something like
foo/..fooledya/../bar.At first I thought I needed a more complex assertion than just include a trailing slash in there, so I started rewriting the regex extensively, and after I realised that it’s not that complex, I noticed that my comments actually have a noticably different focus from yours, so I decided to keep the result for comparison:
Reply to This
Parent