PHP Regular Expressions POSIX stands for 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 Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portable Operating System Interface for Unix 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() None of the mentioned 1 and 2 All of the mentioned 3 and 4 None of the mentioned 1 and 2 All of the mentioned 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-za-z] [a-z] [A-Za-z0-9] [A-z] [A-za-z] [a-z] [A-Za-z0-9] [A-z] 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? implode() explode() concatenate() concat() implode() explode() concatenate() concat() 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_replace() preg_findre() preg_find_replace() preg_find() preg_replace() preg_findre() preg_find_replace() preg_find() 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)); this is some text that we might like to parse. Array ( [0] => some text that [1] => we might like to parse. ) [0] => this is [1] => some text that [2] => 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. Array ( [0] => some text that [1] => we might like to parse. ) [0] => this is [1] => some text that [2] => we might like to parse. Array ( [0] => this is [1] => some text that [2] => we might like to parse. ) ANSWER DOWNLOAD EXAMIANS APP