Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Perl で正規表現を使用して 2 行に分割された URL を読み取るにはどうすればよいですか?
[REQ-URL]: http://hostname:8080/guiderest? customerId=cisco&code=news&guide=MostPopular&attrFilter=BlogFlag:true&v=1
my ($url) = $text =~ /( http [\S\r\n]+ )/x; $url =~ tr|\r\n||d;