Mojo::DOM 和文本方法删除空格
Mojo::DOM and Text Method to remove spaces
我有以下使用 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+$//;
但我想知道是否可以使用令人兴奋的功能来做到这一点?
Mojo::Util provides trim 应该做你想做的事:
my $trimmed = trim $str;
Trim whitespace characters from both ends of string.
我有以下使用 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+$//;
但我想知道是否可以使用令人兴奋的功能来做到这一点?
Mojo::Util provides trim 应该做你想做的事:
my $trimmed = trim $str;
Trim whitespace characters from both ends of string.