我的數據看起來像Perl的正則表達式
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!爲什麼它不工作
我不能幫助perl,但你的表情很好。問題在於你的代碼。 –
另外,你有一個額外的尾隨大括號。 – nneonneo