我有一個字符串,可以讀取像這樣的東西(雖然不總是,數字可能會有所不同)。爲什麼這個正則表達式在Perl中不匹配?
Board Length,45,inches,color,board height,8,inches,black,store,wal-mart,Board weight,20,dollars
我想匹配董事會長度這個正則表達式後面的45。
if ($string =~/Board Length,(\d+\.\d+)/){
print $string;
}
格式是否錯誤?我認爲d +會根據需要匹配儘可能多的數字。會匹配一個文字'。',並且d +會匹配小數點後的任何數字(如果有的話)。
呀測試,我結束了沒收了一下後,我張貼了這個。謝謝。 – user1768884