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!

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