Perl和grep用法

时间:2013-07-31 17:55:56

标签: perl grep

我有以下代码,用于检查“@animals中任何动物#动物的数量

#see number of animals
unless ( grep /number of animals: \(.* animals\)$/, @animals) 

因为我不太熟悉regexp我猜。*指定任何#?
使用$?

使用正斜杠和反斜杠的目的是什么?

所以,如果我要为0只动物寻找一个特定的字符串,以下是正确的吗?

unless ( grep /number of animals: 0 animals/, @animals) #not using backword slashes and $. Or do i still need $?

0 个答案:

没有答案