我正在尝试使用 perl 解析出多行字符串,但我只得到匹配的数量。这是我正在解析的示例:
<div id="content-ZAJ9E" class="content">
Wow, I love the new top bar, so much easier to navigate now :) Anywho, got a few other fixes I am working on as well. :) I hope you all like the new look.
</div>
我正在尝试使用以下代码将内容存储在字符串中:
@a = ($html =~ m/class="content">.*<\/div>/gs);
print "array A, size: ", @a+0, ", elements: ";
print join (" ", @a);
print "\n";
但它返回的不仅仅是div中的文本。有人可以指出我的正则表达式中的错误吗?
玛丽莎