All Apps and Add-ons

Split raw string by a separator

ifbeli
New Member

Hi,

Basically I have a raw string, part of huge csv file.

Additional Role Service Line: None
Comments / Additional information:
ACTION: *** New Starter - Add Role(s) ***";"whatever info
Email Address: some_email
First Name: name

I wanna extract everything after 'Comments'. I came up with the below 2 queries, but none of them is working. I know it might be a basic query, but I am new to Splunk.

index=test_regular_expression source="report_test_data.csv"  | fields Description | eval tmp_result=split(Description, "Comments") | eval result=mvindex(tmp_result,0) | fields + result 

index=test_regular_expression source="report_test_data.csv" | fields Description | makemv delim="Comments" Description allowempty=false

Ignore the index name, the csv file column is called 'Description'.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Perhaps this will get you going in the right direction.

index=test_regular_expression source="report_test_data.csv"  | rex field=Description "Comments(?<Comments>.*)" | ...
---
If this reply helps you, Karma would be appreciated.
0 Karma

somesoni2
Revered Legend

Try this

index=test_regular_expression source="report_test_data.csv"  | fields Description  | rex field=Description "Comments(?<Comments>.+)"
0 Karma
Get Updates on the Splunk Community!

Index This | Why did the turkey cross the road?

November 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...