Splunk Search

Regex search help

nangrosso
Engager

I was asked to " update a search to append a final ' | regex PatternStringMatch="[A-Z]" query that will look for anything in that field that has both a letter and a number. Any thoughts?

Labels (1)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

The OP ask is "has both a letter and a number" (underline is mine).  "\w" will match any single character that is not a "punctuation", so "a" (no number), "1" (no letter), "___" (no letter or number), "a_b_c_", "1_2_3_", etc., will all match.  The following will match "both a letter and a number":

| regex PatternStringMatch="[a-zA-Z].*\d|\d.*[a-zA-Z]"

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| regex PatternStringMatch="\w"
0 Karma

nangrosso
Engager

Thanks for the response but I ran the search it gave me nothing. Any idea what the "W" represents 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

backslash lower case w means numbers and letters. upper case letters means not numbers and letters. So, the regex will keep events where the field has letters or numbers. Is this not what you wanted?

0 Karma

yuanliu
SplunkTrust
SplunkTrust

The OP ask is "has both a letter and a number" (underline is mine).  "\w" will match any single character that is not a "punctuation", so "a" (no number), "1" (no letter), "___" (no letter or number), "a_b_c_", "1_2_3_", etc., will all match.  The following will match "both a letter and a number":

| regex PatternStringMatch="[a-zA-Z].*\d|\d.*[a-zA-Z]"

0 Karma

nangrosso
Engager

Thanks for the detailed explanation 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

You are right, the specification is ambiguous - \w with match both a letter and a number (and non-punctuation).

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...