PHP Regular Expressions PHP has long supported two regular expression implementations known as _______ and _______.1. Perl2. PEAR3. Pearl4. POSIX 1 and 4 2 and 3 1 and 2 2 and 4 1 and 4 2 and 3 1 and 2 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following regular expression matches any string containing zero or one p? p* P? p+ p# p* P? p+ p# ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-z] [A-Za-z0-9] [A-za-z] [a-z] [A-z] [A-Za-z0-9] [A-za-z] [a-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 10 8 9 7 10 8 9 7 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; Username must be all lowercase! No Output is returned Error Username is all lowercase! Username must be all lowercase! No Output is returned Error Username is all lowercase! ANSWER DOWNLOAD EXAMIANS APP