Splunk Enterprise

How to remove quotes from Inputlookup?

hillsmtb7
Explorer

Hey All,

I have the following issue.  There is a lookup table I am using within a query in where some items are returned with quotes and some are not.  I have the following query and I need to ensure all the results are returned without quotes.

hillsmtb7_1-1653498339716.png

 

My final query looks as follows:

hillsmtb7_2-1653498482175.png

 

I know these quotes are causing issues with my final lookups.  Any help is greatly appreciated.

 

Labels (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this (run anywhere sample search, adjust per your need)

| makeresults | eval temp=split("This is #sample #search with format# command","#") | table temp| mvexpand temp | rename temp as search | format | eval search=replace(search,"\"","")

View solution in original post

0 Karma

somesoni2
Revered Legend

Try something like this (run anywhere sample search, adjust per your need)

| makeresults | eval temp=split("This is #sample #search with format# command","#") | table temp| mvexpand temp | rename temp as search | format | eval search=replace(search,"\"","")
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

The values are quoted if they contain, for example, spaces. You could the spaces with underscores for example before they are returned and perhaps switch them back afterwards?

| eval search=replace(search," ","_")
| format "" "" "" "" "" ""
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...