如何忽略不包含<CNV>文本的行?
下面的代码跳过包含<CNV>的行,我希望捕获包含<CNV>的行
while ( <$in_fh> ) {
next if /^#/;
next if /\b(?:CNV)\b/;
...发布于 2016-06-23 18:33:45
如何将if更改为unless?:)
...
next unless /\b(?:CNV)\b/;
....https://stackoverflow.com/questions/37998971
复制相似问题