You want to write a regex to match an e-mail address.
The e-mail address should not start with a digit and should end with ".com".
Which one of the following regex will satisfy this requirement?
B.
"\b" is used to mark word boundaries, "\D" is used to match any non-digit number, and "\w*" is used to match any word of length zero or more.
The remaining part is similar to that used earlier.