Hi,
I have a line in the event like
"/v1/locations/7b-cec6-4820-b699-ec"
I need to extract 7b-cec6-4820-b699-ec, or which ever comes after /v1/locations/ and before a "
Please help on the same.
Thank you.
Try something like this
| rex "/v1/locations/(?<field>[^\"]+)"
View solution in original post
@labaningombam , you want to extract only after '/v1/locations/' or any multiple conditions there?