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 Linux Portative Operating System Interface for Unix Portable Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portable Operating System Interface for Unix Portative Operating System Interface for Linux ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match preg_matchall preg_split preg_match_all preg_match preg_matchall preg_split preg_match_all ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? concatenate() concat() explode() implode() concatenate() concat() explode() implode() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following preg PHP functions is used to take a string, and put it in an array? preg_split() preg_unchain() preg_divide() preg_destroy() preg_split() preg_unchain() preg_divide() preg_destroy() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$text = "this istsome text thatnwe might like to parse.";print_r(split("[nt]",$text)); [0] => this is [1] => some text that [2] => we might like to parse. Array ( [0] => some text that [1] => we might like to parse. ) Array ( [0] => this is [1] => some text that [2] => we might like to parse. ) this is some text that we might like to parse. [0] => this is [1] => some text that [2] => we might like to parse. Array ( [0] => some text that [1] => we might like to parse. ) Array ( [0] => this is [1] => some text that [2] => we might like to parse. ) this is some text that we might like to parse. ANSWER DOWNLOAD EXAMIANS APP