I have my data here Xml Data, I need to extract using Splunk IFX, Generated pattern (regex).
Example 1:
Example 2:
Example 3:
Help 1: I need to extract the express-way exits on the word after and stops at .
Help 2: I need to extract the express-way exits on the word before and stops at Exit
Help 3: I need to extract the express-way exits on the word before and stops at with
There are still a lot of examples in the Xml Data.
I did (?i) before (?P<wordafter>.[^\.]*?Exit)
, this extracts the Fort Rd Exit (Example 2), this extract only before, how can I extract after ? together with this expression.
After hours of trying, solved by (?i) (?P
After hours of trying, solved by (?i) (?P
Hi
Can you tell me if i and P are exactly typed like this or you substituted field names in here?
Thinking this (with changes) may be my answer