我有以下代码,用于检查“@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 $?