Splunk Search

Concatenate onto Regex

edschembor
Path Finder

I'm trying to concatenate something onto one of my regex's.

ie:

index=eph | rex "EPH(?P<EPHID>\d+)" | table EPHID, _raw

I want the EPHID regex to be EPH902834091 instead of just 902834091. So even though the regex is "EPH(?P\d+)", I want the "EPH" at the beginning included. Is there a way to do this?

Thanks!!!

1 Solution

aweitzman
Motivator

Why not just include it in the group?

rex "(?<EPHID>EPH\d+)"

View solution in original post

Ayn
Legend

Just include the EPH in the matching group.

index=eph | rex "(?<EPHID>EPH\d+)" | table EPHID, _raw

aweitzman
Motivator

Why not just include it in the group?

rex "(?<EPHID>EPH\d+)"

Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...