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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...