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 POSIX stands for Portable Operating System Interface for Unix Portative Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Linux Portable Operating System Interface for Unix Portative Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Linux 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() preg_findre() preg_replace() preg_find_replace() preg_find() preg_findre() preg_replace() preg_find_replace() 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() All of the mentioned 1 and 2 None of the mentioned 3 and 4 All of the mentioned 1 and 2 None of the mentioned 3 and 4 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 contact@ examians.com contact@examians.com contact contact@ examians.com contact@examians.com 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