I have two quick question with regex with grep.
what does
\?
mean? I didn't find the explanation for question mark (?
)How can I achieve
or
? for example, the phone number xxx-xxx-xxxx but the first part could be (xxx)
For example, there might be a digit or not between two letters, such as a1b
and ab
, how to do that?
Thanks!