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!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...