|
I have a reoccurring line in a multi-line event of the form: someName someValue someUnits I'm trying to save each occurrence of this someName someValue someUnits set, but only the last one is saved. I am extracting these with: [gztd] REGEX = ^.*\s+(\S+)\s+(\S+)\s+(\S+) FORMAT = td_name::$1 td_val::$2 td_units::$3 MV_ADD = true So, for example if I have: eff 80 % rate 47 GB I only get "rate" for td_name and "47" for td_val and never see the "eff" value. What I want to be able to create is a table for each occurrance. Thx. |