<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Replacing single backslash with double backslash and searching the result in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744530#M241271</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does "&lt;SPAN&gt;text_search" come from a search result - or is this something like a token you are passing in? I couldnt tell from the request but if its coming from a token and you want to apply the additional escaping then you can do this:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=main source="answersDemo" 
    [| makeresults 
    | eval text_search="*\\Test\abc\test\abc\xxx\OUT\*" 
    | eval FileSource=replace(text_search, "\\\\", "\\\\\\\\") 
    | return FileSource ]&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1745075534132.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38661iFDC0162404FF3AAF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1745075534132.png" alt="livehybrid_0-1745075534132.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I used a sample event in index=main as you can see in the results above using;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| windbag
| head 1 
| eval _raw="Test Event for SplunkAnswers user=Demo FileSource=\"MyFileSystem\\Test\\abc\\test\\abc\\xxx\\OUT\\test.exe\" fileType=exe" 
| eval source="answersDemo" 
| collect index=main output_format=hec&lt;/LI-CODE&gt;&lt;P&gt;I may have got the wrong end of the stick with what you're looking for here but let me know!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
    <pubDate>Sat, 19 Apr 2025 15:13:34 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-04-19T15:13:34Z</dc:date>
    <item>
      <title>Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744499#M241259</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I'm trying to dynamically replace single backslashes with double backslashes in a search string and use the result to search across a field (e.g., FileSource). Here's what I’ve tried:&lt;BR /&gt;&lt;BR /&gt;| eval text_search="*\\Test\abc\test\abc\xxx\OUT\*"&lt;BR /&gt;| eval text_search_escaped=replace(text_search, "\\\\", "\\\\\\\\")&lt;BR /&gt;| search FileSource=text_search_escaped&lt;BR /&gt;&lt;BR /&gt;The output of text_search_escaped looks correct (with double backslashes), and if I run a manual search like below, I &lt;STRONG&gt;do get results&lt;/STRONG&gt;:&lt;BR /&gt;&lt;BR /&gt;index=... FileSource="*\\Test\\abc\\test\\abc\\xxx\\OUT\\*"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;However, when I try to use the text_search_escaped variable inside search, I get &lt;STRONG&gt;no results&lt;/STRONG&gt;.&lt;/P&gt;&lt;P class=""&gt;Am I missing something in how Splunk treats dynamic fields inside search? Is there a better way to pass an escaped Windows-style path to a search clause?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 16:55:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744499#M241259</guid>
      <dc:creator>ganesanvc</dc:creator>
      <dc:date>2025-04-18T16:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744523#M241269</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P class=""&gt;However, when I try to use the text_search_escaped variable inside search, I get &lt;STRONG&gt;no results&lt;/STRONG&gt;.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Splunk's &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Search#search" target="_blank" rel="noopener"&gt;search&lt;/A&gt; command can only use field name like&amp;nbsp;text_search_escaped on the left-hand side. &amp;nbsp;If you want to use a field's value,&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Where" target="_blank" rel="noopener"&gt;where&lt;/A&gt;&amp;nbsp;is your friend. &amp;nbsp;For example, you can say&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval text_search="%\\Test\abc\test\abc\xxx\OUT\%"
| eval text_search_escaped=replace(text_search, "\\\\", "\\\\\\\\")
| where FileSource LIKE text_search_escaped&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 19 Apr 2025 05:43:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744523#M241269</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-04-19T05:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744525#M241270</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;You meant RHS, not LHS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;I hope you're running this snippet on an already relatively filtered event stream. If you want to use it as an initial search because you're getting the text_search parameter from elsewhere (like a token in a dashboard) you might be way better off using a subsearch to create a verbatim search term.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Apr 2025 06:49:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744525#M241270</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-04-19T06:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744530#M241271</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does "&lt;SPAN&gt;text_search" come from a search result - or is this something like a token you are passing in? I couldnt tell from the request but if its coming from a token and you want to apply the additional escaping then you can do this:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=main source="answersDemo" 
    [| makeresults 
    | eval text_search="*\\Test\abc\test\abc\xxx\OUT\*" 
    | eval FileSource=replace(text_search, "\\\\", "\\\\\\\\") 
    | return FileSource ]&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1745075534132.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38661iFDC0162404FF3AAF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1745075534132.png" alt="livehybrid_0-1745075534132.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I used a sample event in index=main as you can see in the results above using;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| windbag
| head 1 
| eval _raw="Test Event for SplunkAnswers user=Demo FileSource=\"MyFileSystem\\Test\\abc\\test\\abc\\xxx\\OUT\\test.exe\" fileType=exe" 
| eval source="answersDemo" 
| collect index=main output_format=hec&lt;/LI-CODE&gt;&lt;P&gt;I may have got the wrong end of the stick with what you're looking for here but let me know!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Sat, 19 Apr 2025 15:13:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744530#M241271</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-19T15:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744567#M241280</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The screenshot is working fine. but if&amp;nbsp; i implement the same for multiple i am not getting result. do i miss anything in below&lt;BR /&gt;&lt;BR /&gt;[| makeresults&lt;BR /&gt;| eval text_search="*$text_search$*"&lt;BR /&gt;| eval escaped=replace(text_search, "\\", "\\\\")&lt;BR /&gt;| eval FileSource=escaped, RemoteHost=escaped, LocalPath=escaped, RemotePath=escaped&lt;BR /&gt;| return FileSource RemoteHost LocalPath RemotePath&lt;BR /&gt;]&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 18:03:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744567#M241280</guid>
      <dc:creator>ganesanvc</dc:creator>
      <dc:date>2025-04-21T18:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744571#M241281</link>
      <description>&lt;P&gt;Thanks for your response. I’ve already attempted this, but it didn’t work as expected&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 12:33:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744571#M241281</guid>
      <dc:creator>ganesanvc</dc:creator>
      <dc:date>2025-04-21T12:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744585#M241282</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Were you able to try the below?&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does "&lt;SPAN&gt;text_search" come from a search result - or is this something like a token you are passing in? I couldnt tell from the request but if its coming from a token and you want to apply the additional escaping then you can do this:&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;LI-CODE lang="markup"&gt;index=main source="answersDemo" 
    [| makeresults 
    | eval text_search="*\\Test\abc\test\abc\xxx\OUT\*" 
    | eval FileSource=replace(text_search, "\\\\", "\\\\\\\\") 
    | return FileSource ]&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1745075534132.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38661iFDC0162404FF3AAF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1745075534132.png" alt="livehybrid_0-1745075534132.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I used a sample event in index=main as you can see in the results above using;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| windbag
| head 1 
| eval _raw="Test Event for SplunkAnswers user=Demo FileSource=\"MyFileSystem\\Test\\abc\\test\\abc\\xxx\\OUT\\test.exe\" fileType=exe" 
| eval source="answersDemo" 
| collect index=main output_format=hec&lt;/LI-CODE&gt;&lt;P&gt;I may have got the wrong end of the stick with what you're looking for here but let me know!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 15:22:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744585#M241282</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-21T15:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744599#M241284</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you do "&lt;SPAN&gt;| return FileSource RemoteHost LocalPath RemotePath" then its going to do an AND statement between these fields in your main search - is this what you want?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you want an "OR" then I think you might want to do:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[| makeresults
| eval text_search="*$text_search$*"
| eval escaped=replace(text_search, "\\", "\\\\")
| eval FileSource=escaped, RemoteHost=escaped, LocalPath=escaped, RemotePath=escaped
| table FileSource RemoteHost LocalPath RemotePath
| format "(" "(" "OR" ")" "OR" ")"
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will create something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;( ( FileSource="\\\\Test\\\\abc\\\\test\\\\abc\\\\xxx\\\\OUT\\\\" OR LocalPath="\\\\Test\\\\abc\\\\test\\\\abc\\\\xxx\\\\OUT\\\\" OR RemoteHost="\\\\Test\\\\abc\\\\test\\\\abc\\\\xxx\\\\OUT\\\\" OR RemotePath="\\\\Test\\\\abc\\\\test\\\\abc\\\\xxx\\\\OUT\\\\" ) )&lt;/LI-CODE&gt;&lt;P&gt;Note - I am not 100% sure how many \\ you are expecting, but when I ran your makeresults search it failed and I had to escape the the replace as:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval escaped=replace(text_search, "\\\\", "\\\\\\\\") &lt;/LI-CODE&gt;&lt;P&gt;You can run the makeresults on its own and substitute your token to validate the output you get and ensure the search works correctly.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 20:56:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744599#M241284</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-21T20:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744669#M241297</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp; i am getting no result or 0 record for this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 09:55:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744669#M241297</guid>
      <dc:creator>ganesanvc</dc:creator>
      <dc:date>2025-04-22T09:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744678#M241298</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can you provide the full search you are trying? Did you try it outside the dashboard in the search bar? If there is a problem with the search you should be able to see it clearly there.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 10:29:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744678#M241298</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-22T10:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744690#M241299</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp; yes i am trying it outside dashboard in search bar i not getting any error or result as well&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ganesanvc_0-1745331655326.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38696iFB8BC0C6EEC22F4C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ganesanvc_0-1745331655326.png" alt="ganesanvc_0-1745331655326.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 14:21:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744690#M241299</guid>
      <dc:creator>ganesanvc</dc:creator>
      <dc:date>2025-04-22T14:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744730#M241302</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/309429"&gt;@ganesanvc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at the square braces there, it looks like you're running the sub-search part in the SPL search box, try removing the [ and ] so that we can see if that works independetly.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 22:13:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/744730#M241302</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-22T22:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing single backslash with double backslash and searching the result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/745017#M241351</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp; if i remove [] its just creating dummy logs with path its not actually searching result. like below&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;4/23/25&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;9:36:05.515 AM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;04-23-25&lt;/SPAN&gt; &lt;SPAN class=""&gt;09:36:05&lt;/SPAN&gt;,&lt;SPAN class=""&gt;515&lt;/SPAN&gt; [&lt;SPAN class=""&gt;3820&lt;/SPAN&gt;] &lt;SPAN class=""&gt;DEBUG&lt;/SPAN&gt; &lt;SPAN class=""&gt;Common&lt;/SPAN&gt; &amp;lt;&amp;gt; &lt;SPAN class=""&gt;-&lt;/SPAN&gt; &lt;SPAN class=""&gt;Started&lt;/SPAN&gt; &lt;SPAN class=""&gt;thread&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;SPAN class=""&gt;FileSource =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A class="" title="*\\sf-apppr01\\wms\\prod\\RedSky\\XML\\OUT\\ITEM\\*" href="https://anfprod.splunkcloud.com/en-US/app/search/search?earliest=-60m%40m&amp;amp;latest=now&amp;amp;q=search%20index%3Dglobalscape%20host%3Dswgseftapppr*%0A%0A%7C%20eval%20text_search%3D%22*%5C%5Csf-apppr01%5Cwms%5Cprod%5CRedSky%5CXML%5COUT%5CITEM%5C*%22%0A%7C%20eval%20escaped%3Dreplace(text_search%2C%20%22%5C%5C%5C%5C%22%2C%20%22%5C%5C%5C%5C%5C%5C%5C%5C%22)%0A%7C%20eval%20FileSource%3Descaped%2C%20RemoteHost%3Descaped%2C%20LocalPath%3Descaped%2C%20RemotePath%3Descaped%0A%7C%20table%20FileSource%20RemoteHost%20LocalPath%20RemotePath%0A%7C%20format%20%22(%22%20%22(%22%20%22OR%22%20%22)%22%20%22OR%22%20%22)%22&amp;amp;display.page.search.mode=verbose&amp;amp;dispatch.sample_ratio=1&amp;amp;workload_pool=standard_perf&amp;amp;display.page.search.tab=events&amp;amp;display.general.type=statistics&amp;amp;sid=1745415367.347740_4D5E46B7-7817-4714-A45C-EA1A78F27062#" target="_blank" rel="noopener"&gt;*\\test\\abc\\test\\xyz\\abc\\123\\ITEM\\*&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;eventtype =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A class="" title="exclude_known_allowed" href="https://anfprod.splunkcloud.com/en-US/app/search/search?earliest=-60m%40m&amp;amp;latest=now&amp;amp;q=search%20index%3Dglobalscape%20host%3Dswgseftapppr*%0A%0A%7C%20eval%20text_search%3D%22*%5C%5Csf-apppr01%5Cwms%5Cprod%5CRedSky%5CXML%5COUT%5CITEM%5C*%22%0A%7C%20eval%20escaped%3Dreplace(text_search%2C%20%22%5C%5C%5C%5C%22%2C%20%22%5C%5C%5C%5C%5C%5C%5C%5C%22)%0A%7C%20eval%20FileSource%3Descaped%2C%20RemoteHost%3Descaped%2C%20LocalPath%3Descaped%2C%20RemotePath%3Descaped%0A%7C%20table%20FileSource%20RemoteHost%20LocalPath%20RemotePath%0A%7C%20format%20%22(%22%20%22(%22%20%22OR%22%20%22)%22%20%22OR%22%20%22)%22&amp;amp;display.page.search.mode=verbose&amp;amp;dispatch.sample_ratio=1&amp;amp;workload_pool=standard_perf&amp;amp;display.page.search.tab=events&amp;amp;display.general.type=statistics&amp;amp;sid=1745415367.347740_4D5E46B7-7817-4714-A45C-EA1A78F27062#" target="_blank" rel="noopener"&gt;exclude_known_allowed&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;host =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A class="" title="SWGSEFTAPPPR002" href="https://anfprod.splunkcloud.com/en-US/app/search/search?earliest=-60m%40m&amp;amp;latest=now&amp;amp;q=search%20index%3Dglobalscape%20host%3Dswgseftapppr*%0A%0A%7C%20eval%20text_search%3D%22*%5C%5Csf-apppr01%5Cwms%5Cprod%5CRedSky%5CXML%5COUT%5CITEM%5C*%22%0A%7C%20eval%20escaped%3Dreplace(text_search%2C%20%22%5C%5C%5C%5C%22%2C%20%22%5C%5C%5C%5C%5C%5C%5C%5C%22)%0A%7C%20eval%20FileSource%3Descaped%2C%20RemoteHost%3Descaped%2C%20LocalPath%3Descaped%2C%20RemotePath%3Descaped%0A%7C%20table%20FileSource%20RemoteHost%20LocalPath%20RemotePath%0A%7C%20format%20%22(%22%20%22(%22%20%22OR%22%20%22)%22%20%22OR%22%20%22)%22&amp;amp;display.page.search.mode=verbose&amp;amp;dispatch.sample_ratio=1&amp;amp;workload_pool=standard_perf&amp;amp;display.page.search.tab=events&amp;amp;display.general.type=statistics&amp;amp;sid=1745415367.347740_4D5E46B7-7817-4714-A45C-EA1A78F27062#" target="_blank" rel="noopener"&gt;test&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;index =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A class="" title="globalscape" href="https://anfprod.splunkcloud.com/en-US/app/search/search?earliest=-60m%40m&amp;amp;latest=now&amp;amp;q=search%20index%3Dglobalscape%20host%3Dswgseftapppr*%0A%0A%7C%20eval%20text_search%3D%22*%5C%5Csf-apppr01%5Cwms%5Cprod%5CRedSky%5CXML%5COUT%5CITEM%5C*%22%0A%7C%20eval%20escaped%3Dreplace(text_search%2C%20%22%5C%5C%5C%5C%22%2C%20%22%5C%5C%5C%5C%5C%5C%5C%5C%22)%0A%7C%20eval%20FileSource%3Descaped%2C%20RemoteHost%3Descaped%2C%20LocalPath%3Descaped%2C%20RemotePath%3Descaped%0A%7C%20table%20FileSource%20RemoteHost%20LocalPath%20RemotePath%0A%7C%20format%20%22(%22%20%22(%22%20%22OR%22%20%22)%22%20%22OR%22%20%22)%22&amp;amp;display.page.search.mode=verbose&amp;amp;dispatch.sample_ratio=1&amp;amp;workload_pool=standard_perf&amp;amp;display.page.search.tab=events&amp;amp;display.general.type=statistics&amp;amp;sid=1745415367.347740_4D5E46B7-7817-4714-A45C-EA1A78F27062#" target="_blank" rel="noopener"&gt;test&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;linecount =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A class="" title="1" href="https://anfprod.splunkcloud.com/en-US/app/search/search?earliest=-60m%40m&amp;amp;latest=now&amp;amp;q=search%20index%3Dglobalscape%20host%3Dswgseftapppr*%0A%0A%7C%20eval%20text_search%3D%22*%5C%5Csf-apppr01%5Cwms%5Cprod%5CRedSky%5CXML%5COUT%5CITEM%5C*%22%0A%7C%20eval%20escaped%3Dreplace(text_search%2C%20%22%5C%5C%5C%5C%22%2C%20%22%5C%5C%5C%5C%5C%5C%5C%5C%22)%0A%7C%20eval%20FileSource%3Descaped%2C%20RemoteHost%3Descaped%2C%20LocalPath%3Descaped%2C%20RemotePath%3Descaped%0A%7C%20table%20FileSource%20RemoteHost%20LocalPath%20RemotePath%0A%7C%20format%20%22(%22%20%22(%22%20%22OR%22%20%22)%22%20%22OR%22%20%22)%22&amp;amp;display.page.search.mode=verbose&amp;amp;dispatch.sample_ratio=1&amp;amp;workload_pool=standard_perf&amp;amp;display.page.search.tab=events&amp;amp;display.general.type=statistics&amp;amp;sid=1745415367.347740_4D5E46B7-7817-4714-A45C-EA1A78F27062#" target="_blank" rel="noopener"&gt;1&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 25 Apr 2025 17:53:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Replacing-single-backslash-with-double-backslash-and-searching/m-p/745017#M241351</guid>
      <dc:creator>ganesanvc</dc:creator>
      <dc:date>2025-04-25T17:53:00Z</dc:date>
    </item>
  </channel>
</rss>

