Hi @Emily12,
you have to define a rule to use in a regex to identify your field.
So try something like this:
your_search
| rex "(?<your_field>.*)_\d"
| ...
that you can test at https://regex101.com/r/Fpdc7V/1
Ciao.
Giuseppe
Hi @Emily12,
you have to define a rule to use in a regex to identify your field.
So try something like this:
your_search
| rex "(?<your_field>.*)_\d"
| ...
that you can test at https://regex101.com/r/Fpdc7V/1
Ciao.
Giuseppe