I can get what I want with this, but it needs to stop and keep the field<number> according to the count. Currently when it ends it throws it in the last field number. | rex field=ut_path "(\/(?<Field_1>[\w\d\-\.\+\,\#\!\?]+))?(\/(?<Field_2>[\w\d\-\.\+\,\#\!\?]+))?(\/(?<Field_3>[\w\d\-\.\+\,\#\!\?]+))?(\/(?<Field_4>[\w\d\-\.\+\,\#\!\?]+))?(\/(?<Field_5>[\w\d\-\.\+\,\#\!\?]+))?(\/(?<Field_6>[\w\d\-\.\+\,\#\!\?]+))"
| table ut_path, Field_* need a way to get it to say, e.g. if Field_3 is the last value, then stop at Field_3... I know this question is prolly leaning toward rex expertise, but thought I would ask here anyway... ty
... View more