我在变量中有一个字符串,$vreponse
字符串是
int.force_snmp_version T_SIZE 3
我要做的就是验证字符串中是否有数字 3。如果验证成功,则打印一条消息,否则打印失败消息
我尝试过这样的事情
my $vresponse = $ua->get("https://$user:$pass\@$ern_ip/get_param?p=init.force_snmp_version");
if ($vresponse->decoded_content =~ /\b3$/)
{
print "SUCESS\n";
}
else
{ print "not\n"; }
这不起作用,我需要改变$vresponse->decoded_content
吗?