我有以下代码使用 Mojo::DOM 来获取文本
my $text =ua->get('https://my_site.org'.$_)->res->dom->at('div.container-fluid h1')->text;
而 h1 下的文本如果采用以下格式:
<h1>
my_text </h1>
$text 带有标题和尾随空格
我可以做这样的事情来删除标题和尾随空格
$text =~ s/^\s+//;
$text=~ s/\s+$//;
但我想知道是否可以使用 mojolicious 功能来做到这一点?