Splunk Search

Dynamic trim of field at both start and end

ramgnisiv
Path Finder

Hi, i have a field that i need to trim.
The field can have a number of different strings, for which i want to trim everything except 1 word.

The fields can look like this:

Deployment of ABC with version 3.0.348 to Acceptance
Deployment of Application XYZ with version : 1.8.540 to Production

I'm only interested in the ABC and XYZ part of these strings.

The part that says "Deployment of " or "Deployment of Application " at the start should be removed.
The part that says " with version ........" all the way to the end should be removed.

What would be the best way of doing this? I've been messing about with regex, trim, replace, without success.

Edit: The following regex appears to work when i try it in any regex editor online, but i cannot get this to work in splunk:

.*(?:Application)? ? (.*) with.*
0 Karma
1 Solution

rafadvega
Path Finder

Yo can try this:

| rex field=<yourfield> ("(Deployment of Application|Deployment of)\s(?<Application>.*)\swith version.*")

View solution in original post

rafadvega
Path Finder

Yo can try this:

| rex field=<yourfield> ("(Deployment of Application|Deployment of)\s(?<Application>.*)\swith version.*")

Sukisen1981
Champion

try this "Application\s+(?<application>.*?)\s+" max_match=0

0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...

Auto-Injector for Everything Else: Making OpenTelemetry Truly Universal

You might have seen Splunk’s recent announcement about donating the OpenTelemetry Injector to the ...