in reply to Re: Short quines
in thread Short quines
Also, you don't break formatting for replies to your node.use strict; use LWP; use HTTP::Request; my $ua = LWP::UserAgent::new ('LWP::UserAgent'); LWP::UserAgent::agent ($ua, 'Mozilla/5.0'); my $url = "http://www.perlmonks.org/?displaytype=displaycode;node_id=6 +62072"; my $request = HTTP::Request::new ('HTTP::Request', GET => $url); my $response = LWP::UserAgent::request ($ua, $request); print $response->content;
Edit: I think you want a question mark after dot-star. Otherwise it's q-positively trivial for me to break your code.
Edit2: I just realized that, if you put a question mark after dot-star, the end of your regex matches itself. But there are ways around that.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Short quines
by ambrus (Abbot) on Jan 12, 2008 at 18:26 UTC | |
|
Re^3: Short quines
by Snarius (Sexton) on Jan 12, 2008 at 19:21 UTC | |
by ambrus (Abbot) on Jan 13, 2008 at 09:31 UTC |