- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can you help me extract the following field using regular expression?
Deepz2612
Explorer
12-14-2018
12:49 AM
I want to extract the Autosys_Job from the below log snippet and so used the below rex.
Log Snippet :
Query :
rex "(?:(\nAutosys_Job:)?\s(?\S+))"
the results are not as expected
Expected Result :
event_1
tsx1_d
Kindly help
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

woodcock
Esteemed Legend
10-25-2019
07:53 PM
Re-edit your question; it makes no sense and is missing details that you imply should be present.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

493669
Super Champion
12-14-2018
12:53 AM
Try this:
|rex "Autosys_Job:\s*(?<Autosys_Job>\w+)"
