PHP Regular Expressions [:alpha:] can also be specified as. [A-z] [a-z] [A-za-z] [A-Za-z0-9] [A-z] [a-z] [A-za-z] [A-Za-z0-9] 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 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 ( [1] => steak ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [3] => potatoes ) Array ( [0] => potatoes ) Array ( [1] => steak ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [3] => potatoes ) Array ( [0] => potatoes ) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$url = "contact@examians.com";echo ltrim(strstr($url, "@"),"@"); contact@ examians.com contact contact@examians.com contact@ examians.com contact contact@examians.com ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 10 7 8 9 10 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad Salad is good SaladSaladSaladSaladSalad is good is good SaladSaladSaladSaladSalad is good Salad ANSWER DOWNLOAD EXAMIANS APP