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?$number = array(0,1,two,three,four,5);$num = preg_grep("/[0-5]/", $number);print_r($num); Array([2]=>two [3]=>three [4]=>four) Array([1]=> 1) Array([0]=>0 [1]=>1 [5]=>5) Array([0]=>0 [1]=>1 [2]=>two [3]=>three [4]=>four [5]=>5) Array([2]=>two [3]=>three [4]=>four) Array([1]=> 1) Array([0]=>0 [1]=>1 [5]=>5) Array([0]=>0 [1]=>1 [2]=>two [3]=>three [4]=>four [5]=>5) 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_replace() preg_replace() preg_find() preg_findre() preg_find_replace() preg_replace() preg_find() preg_findre() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 9 7 8 10 9 7 8 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?echo str_pad("Salad", 5)." is good."; is good Salad is good SaladSaladSaladSaladSalad Salad is good SaladSaladSaladSaladSalad is good is good Salad is good SaladSaladSaladSaladSalad Salad is good SaladSaladSaladSaladSalad is good ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [a-z] [A-za-z] [A-z] [A-Za-z0-9] [a-z] [A-za-z] [A-z] [A-Za-z0-9] ANSWER DOWNLOAD EXAMIANS APP