Splunk Search

extract a field from csv file

harshal_chakran
Builder

Hi,

I have a CSV file, which after indexing looks like this

"data1","12-13",y,20,1,"31.034483"
"data1","12-13",y,20,1,"31.034483"
"data1","12-13",y,20,2,45
"data1","12-13",y,20,3,"31.372549"
"data1","12-13",y,20,4,20

I have written a rex command to get the last column values in a table, but not able see all the variables, as some of it is in ""(double quotes) and some not as well some has decimal points.
My rex command is:-

sourcetype=xyz|search data1|rex "(?i)^(?:[^,]*,){5}(?P<FIELDNAME>.+)"|table FIELDNAME

I want the table to be without double quotes ,as shown below:-

31.034483
31.034483
45
31.372549
20

Please Help...!!!

Tags (4)
0 Karma
1 Solution

Ayn
Legend

If you want to match the last field the best approach imho is to anchor your match against the end of the line, not against how many fields are before the last one. This regex should work:

"?([\d.]+)"?$

View solution in original post

0 Karma

Ayn
Legend

If you want to match the last field the best approach imho is to anchor your match against the end of the line, not against how many fields are before the last one. This regex should work:

"?([\d.]+)"?$
0 Karma

harshal_chakran
Builder

Superb..!!!It worked!!
Thanks Ayn...

0 Karma

Ayn
Legend

... | rex "\"?(?<myvalue>[\d.]+)\"?$" | table myvalue

0 Karma

harshal_chakran
Builder

Hi Ayn,
Can you please tell me how to put this regex, as I am new to it. Its very hard for me to understand.

0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...