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!"; Error 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 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions finds the last occurrence of a string, returning its numerical position? strrpos() strlast() strlastpos() strpos() strrpos() strlast() strlastpos() strpos() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_found preg_match preg_search preg_find preg_found preg_match preg_search preg_find 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 Which one of the following preg PHP function is used to do a find and replace on a string or an array? preg_find_replace() preg_find() preg_replace() preg_findre() preg_find_replace() preg_find() preg_replace() preg_findre() ANSWER DOWNLOAD EXAMIANS APP
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 2 and 4 1 and 2 1 and 4 2 and 3 2 and 4 1 and 2 ANSWER DOWNLOAD EXAMIANS APP