0

如何读取在 Perl 中使用正则表达式分成两行的 URL?

[REQ-URL]: http://hostname:8080/guiderest?
customerId=cisco&code=news&guide=MostPopular&attrFilter=BlogFlag:true&v=1
4

1 回答 1

1
my ($url) = $text =~ /( http [\S\r\n]+ )/x;
$url =~ tr|\r\n||d;
于 2013-10-22T07:43:31.520 回答