Splunk Search

Eval and If else value return or else null

Splunk_rocks
Path Finder

Hello Splunkers,

Im constructing Eval field " user1" actually user field contain 5 digit number so i have to construct a EVAL field like

index= XXX| "xxxxx" |eval user1 = if((user_pin > 0), "user_pin", "Unknown") | table user1 user_pin

If "user1" field is 7 digit then in just return actual 7 digit number or else if it is string just say "null value"

EVAL-user = if((user1== 5 digit number ) "reportactull number ", "report null value ")

Please let me know

Tags (2)
0 Karma
1 Solution

woodcock
Esteemed Legend

You say both 7-digit and 5-digit but I am assuming that you mean the latter, so like this:

EVAL-user=if(match(user1, "^\d{5}$"), user1, "null value")

View solution in original post

0 Karma

woodcock
Esteemed Legend

You say both 7-digit and 5-digit but I am assuming that you mean the latter, so like this:

EVAL-user=if(match(user1, "^\d{5}$"), user1, "null value")
0 Karma

Splunk_rocks
Path Finder

Thanks that worked ..if i want to capture word or digit In case 5 -7 digit number or 5-8 word id.

0 Karma

Splunk_rocks
Path Finder

I need to match below to construct eval field.

user
X234578
wertyui
kxtur
lytue23

0 Karma

woodcock
Esteemed Legend

Change d{5} to d{5-8} or similar.

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