我的数据看起来像:
NC_004415 NC_010199 ([T(trnH ,trnS1 trnL1 ,)])
NC_006131 NC_010199 ([T(trnH ,trnS1 trnL1 ,)])
NC_006355 NC_007231 ([T(trnM ,trnQ ,)])
我想捕获以下之间的所有内容[]
:
while( my $line = <crex> )
{ $t=$line=~m/(\[.*\])/;
print $t;
}
的输出$t
是1
。为什么它不起作用?