0
我一直在閱讀這篇文章的第一次出現,但它並沒有解決我的問題: Regex: matching up to the first occurrence of a character匹配到一個字符
我有這個變量:
$attributes = ID=CUFF.1;Name=CG12402-RB;Note=Parial_gene
我寫了這個腳本:
if ($attributes =~ /Name=([^;]*)/) {
$genename = $-[0];
$name = substr($attributes, $genename);
如果我打印$name
這是輸出:Name=CG12402;Note=Parial_gene
但我想這樣我的輸出:Name=CG12402
有人能幫助我嗎?
謝謝你它工作! – userbio