0 votes
in PHP by

Which of the following PCRE regular expressions best matches the string php|architect?

A) .*
B) ...|.........
C) \d{3}\|\d{8}
D) [az]{3}\|[az]{9}
E) [a-z][a-z][a-z]\|\w{9}

1 Answer

0 votes
by

[a-z][a-z][a-z]\|\w{9}

Related questions

0 votes
0 votes
asked Mar 19, 2020 in PHP by DavidAnderson
0 votes
asked Mar 19, 2020 in PHP by DavidAnderson
0 votes
asked Jun 27, 2020 in PHP by DavidAnderson
...