PHP Regular Expressions [:alpha:] can also be specified as. [A-za-z] [a-z] [A-z] [A-Za-z0-9] [A-za-z] [a-z] [A-z] [A-Za-z0-9] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$foods = array("pasta", "steak", "fish", "potatoes");$food = preg_grep("/^s/", $foods);print_r($food); Array ( [3] => potatoes ) Array ( [0] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [1] => steak ) Array ( [3] => potatoes ) Array ( [0] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [1] => steak ) 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 Username is all lowercase! Error Username must be all lowercase! No Output is returned Username is all lowercase! Error ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Say we have two compare two strings which of the following function/functions can you use?1. strcmp()2. strcasecmp()3. strspn()4. strcspn() 1 and 2 All of the mentioned None of the mentioned 3 and 4 1 and 2 All of the mentioned None of the mentioned 3 and 4 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