Splunk Enterprise

split multi line field

aasabatini
Motivator

Hi Folks,

I need to split  a multiline field

 

 

-2.9416067
53.0374031
0.0

 

 

 

the first line is latitude e the second line is longitude,   is possible extract these two fields from this multi-line field?

“The answer is out there, Neo, and it’s looking for you, and it will find you if you want it to.”
Labels (1)
Tags (1)
0 Karma
1 Solution

ashvinpandey
Contributor

@aasabatini Try adding the below query:

 

| eval latitude=mvindex(Company_Name,0), longitude=mvindex(Company_Name,1)
| table Company_Name latitude longitude

 

Also, If this reply helps you, an upvote would be appreciated.

View solution in original post

ashvinpandey
Contributor

@aasabatini Try adding the below query:

 

| eval latitude=mvindex(Company_Name,0), longitude=mvindex(Company_Name,1)
| table Company_Name latitude longitude

 

Also, If this reply helps you, an upvote would be appreciated.

aasabatini
Motivator

Thanks @ashvinpandey 

“The answer is out there, Neo, and it’s looking for you, and it will find you if you want it to.”
0 Karma
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, ...