Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Which of the following regular expressions will match a phone area code with or without parentheses? That is , it must match a 3 digit

Which of the following regular expressions will match a phone area code with or without parentheses?
That is, it must match a 3 digit number where the first digit is a numeral 2 or greater. For example, it must
match 345 or (345) but not 145 or (145). Hint there is more than one correct response.
a.[2-9]\d{2}|([2-9]\d{2})
b.[2-9][0-9]{2}|(\([2-9][0-9]{2}\))
c.([2-9]\d{2})|(\([2-9]\d{2}\))
d.([2-9]\d{2})|([2-9]\d{2})
e.([2-9][0-9]{2})|(\([2-9][0-9]{2}\))
f. None of the above

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL For Data Science Data Cleaning Wrangling And Analytics With Relational Databases

Authors: Antonio Badia

1st Edition

3030575918, 978-3030575915

More Books

Students also viewed these Databases questions