我有以下行:
"14:48 say;0ed673079715c343281355c2a1fde843;2;laka;hello ;)"
我使用一个简单的正则表达式来解析它:
if($line =~ /(\d+:\d+)\ssay;(.*);(.*);(.*);(.*)/) {
my($ts, $hash, $pid, $handle, $quote) = ($1, $2, $3, $4, $5);
}
但是; 最后把事情搞砸了,我不知道为什么。贪婪的运营商不应该处理“一切”吗?