PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 7 10 8 9 7 10 8 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_find preg_search preg_match preg_found preg_find preg_search preg_match preg_found ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [a-z] [A-Za-z0-9] [A-z] [A-za-z] [a-z] [A-Za-z0-9] [A-z] [A-za-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 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!"; Error No Output is returned Username is all lowercase! Username must be all lowercase! Error No Output is returned Username is all lowercase! Username must be all lowercase! 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_replace() preg_findre() preg_find() preg_find_replace() preg_replace() preg_findre() preg_find() ANSWER DOWNLOAD EXAMIANS APP