Hi,
I'm trying to retrieve data using regex and wildcard.
Search query - "URL=/data/item/v1/*/"
Result 1 - /data/item/v1/1234/on
Result 2 - /data/item/v1/1234
I want to all data between the asterix, but not after the last slash.
I'm using this regex currently, but it doesn't work.
Got the following error - Error in 'rex' command:
The regex '^(.*[\\/])' does not extract anything. It should specify at least one named group. Format: (?...).
rex field=URL "^(.*[\\\/])"
Regex works fine here - regexr . com / 43r9n
... View more