PHP Regular Expressions Which among the following is/are not a metacharacter?1. /a2. /A3. /b4. /B 1 and 3 Only 1 2, 3 and 4 2 and 4 1 and 3 Only 1 2, 3 and 4 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.2 PHP 4.3 PHP 4.0 PHP 4.1 PHP 4.2 PHP 4.3 PHP 4.0 PHP 4.1 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$name = "What is your name?";if (preg_match("/name/"),$name)echo "My name is Will Pitt ";elseecho "My name is not Will Pitt ";if (preg_match("/are/"))echo "I am great"else echo "I am not great"; My name is Will Pitt I am great My name is not Will Pitt I am great My name is Will Pitt I am not great My name is not Will Pitt I am not great My name is Will Pitt I am great My name is not Will Pitt I am great My name is Will Pitt I am not great My name is not Will Pitt I am not great ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match preg_matchall preg_match_all preg_split preg_match preg_matchall preg_match_all preg_split 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
PHP Regular Expressions Which one of the following functions is used to search a string? preg_found preg_find preg_match preg_search preg_found preg_find preg_match preg_search ANSWER DOWNLOAD EXAMIANS APP