Getting Data In

Splitting fields with slashes

ajlBXsplunk
New Member

Anyone else having trouble or have guidance to split fields backslashes such as with file paths?

The field value is displayed as:

folder1\folder2\file.txt

And the raw value is:

folder1\\folder2\\file.txt

I have tried this with no luck:

| eval RelativeTargetNameSplit = split(RelativeTargetName, '\')
| eval RelativeTargetNameSplit = split(RelativeTargetName, '\\')
| eval RelativeTargetNameSplit = split(RelativeTargetName, '\\\\')
0 Karma
1 Solution

ddrillic
Ultra Champion

| eval RelativeTargetNameSplit = split("aaaaaXbbbb", "X") just worked for me with double quotes and not single ones around the X.

View solution in original post

0 Karma

ddrillic
Ultra Champion

| eval RelativeTargetNameSplit = split("aaaaaXbbbb", "X") just worked for me with double quotes and not single ones around the X.

0 Karma

ajlBXsplunk
New Member

You're right, When dealing with slashes, use quotes (").

| eval RelativeTargetNameSplit = split(RelativeTargetName, "\\")
0 Karma

ddrillic
Ultra Champion

| eval RelativeTargetNameSplit = split("folder1\folder2\file.txt", "\") worked as well.

0 Karma

ajlBXsplunk
New Member

| eval RelativeTargetNameSplit = split("folder1\folder2\file.txt", "\") does work for me but not with the input is from a field (as opposed to an explicit string)

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Your example data has backslashes, your attempts have forward slashes.

0 Karma

ajlBXsplunk
New Member

Oops, updated to include the right slashed. Thanks for pointing that out.

0 Karma
Get Updates on the Splunk Community!

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, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...