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_findre() preg_find() preg_find_replace() preg_replace() preg_findre() preg_find() preg_find_replace() preg_replace() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 7 8 9 10 7 8 9 10 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 POSIX stands for Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portative Operating System Interface for Linux ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? strtoupper() str_uppercase() struppercase() uppercase() strtoupper() str_uppercase() struppercase() uppercase() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$line = "You like dogs. I hate dogs. We should marry."$sen = preg_split('/./', $line);print_r($sen); You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. I hate dogs. We should marry.) Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. I hate dogs. We should marry.) Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error ANSWER DOWNLOAD EXAMIANS APP