1 Mar
2008
1 Mar
'08
9:11 p.m.
On Sat, Mar 01, 2008 at 05:15:52PM +0000, I wrote:
"?y" as an example URI. That example also parses according to the regular expression they provide:
$ perl -wnle 'print if m(^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?$)' <<< '?foo=bar' ?foo=bar $
Heh, that turns out to be a vacuous remark. The regular expression matches *any* string! Jeremy Henty