Splunk Search

Regex error

Puzzle2011
Engager

I am trying to validate that the user has entered their phone number in this format (555) 555-5555. I keep getting this error: Unmatched ) in regex; marked by <-- HERE in m/[([0-9]) <-- HERE ]+[[0-9]-]+[[0-9]+/ at validate.cgi line 46. My code is below. Any help?

sub validate_input {
my $valid = "Y";
my $errormsg;
if ($phone !~ m/[([0-9])]+[[0-9]-]+[[0-9]+/]) {
$valid = "N";
my $errormsg = "enter a valid phone number in format desired.";
}
return $valid, $errormsg;
}

Tags (2)
0 Karma
1 Solution

tpflicke
Path Finder

The characters ( and ) in regex are used for grouping so you need to escape them if you want to match literally.
You can also use \d for digit, I find it more readable than [0-9].
Try

m/\(\d\d\d\)\s*\d\d\d-\d\d\d\d/ 
m/\(\d{3}\)\s*\d{3}-\d{4}/
m/\(\d+\)\s*\d+-\d+/

depending on whether you want to exactly match the number of digits and preference of style.

View solution in original post

tpflicke
Path Finder

The characters ( and ) in regex are used for grouping so you need to escape them if you want to match literally.
You can also use \d for digit, I find it more readable than [0-9].
Try

m/\(\d\d\d\)\s*\d\d\d-\d\d\d\d/ 
m/\(\d{3}\)\s*\d{3}-\d{4}/
m/\(\d+\)\s*\d+-\d+/

depending on whether you want to exactly match the number of digits and preference of style.

Get Updates on the Splunk Community!

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...

We’ve Got Education Validation!

Are you feeling it? All the career-boosting benefits of up-skilling with Splunk? It’s not just a feeling, it's ...