我有以下变量。如果变量有“imoport/canada/campingplaces/tobermory”而不是#或任何东西,我只想打印yes。对于这类事情,应该在正则表达式中插入什么。
my $textfile = "# imoport/canada/campingplaces/tobermory
imoport/canada/campingplaces/tobermory
#imoport/canada/campingplaces/tobermory";
my $textNeeded= "imoport/canada/campingplaces/tobermory"
这就是我正在使用的
if ($textfile =~ m/$textNeeded/i) {
print "yes working"
}
注意:- 我从不同的文本文件中获取数据,因此某些文本文件可能只有“#imoport/canada/campingplaces/tobermory”。我想避免那些