in reply to Re: store regex in hash
in thread store regex in hash

#this works: $current_line =~ q{\A.*? %(.*?): }xms; $event_id = $1;
Really? I don't think it even compiles.