Splunk Search

Regex : Extract text between first and second semi-colon from the right

mdeterville
Path Finder

Hello SMEs:

I need some assistance extracting everything between the 1st and 2nd semi-colon ; (FROM THE RIGHT)  from a string like this: SITES;Bypass;Whitelist;Finance;User Business Accept

In this case, the output would be Finance.

Note: text between the semi-colon's may change 

Any assistance would be appreciated.

Regards,

Mac

Labels (1)
0 Karma
1 Solution

tscroggins
Influencer

@mdeterville 

The * quantifier is greedy by default. This should work:

| rex ".*;(?<value>.*);"

Try it here.

View solution in original post

mdeterville
Path Finder

@tscroggins  Ran into an issue where the data set also includes some categories only contains 1 Semi colon, similar to: "Business/Economy;User Accepted Business".

Any idea if OR conditions can be used to combine the initial solution and another solution that grabs everything before the first semi-colon (FROM THE LEFT) when it finds fields with only one semi colon?

Thanks in advance.

-Mac

0 Karma

tscroggins
Influencer

@mdeterville

There are many (infinite!) ways to construct regular expressions. To capture everything between the first semicolon and either the second semicolon or the end of the line, you can use e.g.:

| rex ".*?;(?<value>[^;$]+);?"

$ is an anchor (a special token) representing the end of the string. The construct [^;$]+ means one or more characters not matching semicolon or end of string. The capture will stop when it encounters either of those characters.

You can plug the regular expression into regex101.com or another tool to test it with a step by step explanation.

0 Karma

tscroggins
Influencer

@mdeterville 

The * quantifier is greedy by default. This should work:

| rex ".*;(?<value>.*);"

Try it here.

mdeterville
Path Finder

@tscroggins Worked like a charm - Thanks for the quick response!

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

What Is Splunk? Here’s What You Can Do with Splunk

Hey Splunk Community, we know you know Splunk. You likely leverage its unparalleled ability to ingest, index, ...

Level Up Your .conf25: Splunk Arcade Comes to Boston

With .conf25 right around the corner in Boston, there’s a lot to look forward to — inspiring keynotes, ...

Manual Instrumentation with Splunk Observability Cloud: How to Instrument Frontend ...

Although it might seem daunting, as we’ve seen in this series, manual instrumentation can be straightforward ...