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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...