Vidyalelo
PHP · all questions

Regular Expressions
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

30

Questions

2/2

Page

Pick an option on a question to see the right answer and solution.

What will be the output of the following PHP code?
<?php
$number = array(0,1,two,three,four,5);
number);
print_r($num);
?>

Select an option to see the answer and solution.

What will be the output if we replace the line number); with number, PREG_GREP_INVERT);?

Select an option to see the answer and solution.

Which one of the following functions is used to search a string?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$name = "What is your name?"
if (preg_match("/name/"),$name)
  echo "My name is Will Pitt ";
else
  echo "My name is not Will Pitt ";
if (preg_match("/are/"))
  echo "I am great"
else
  echo "I am not great";    
?>

Select an option to see the answer and solution.

Which one of the following preg PHP function is used to do a find and replace on a string or an array?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$str = "Hello! My name is Cameron Fox. Coffee?"
$find = array('/is/','/coffee/');
$replace = array('/was/','/tea/');
echo preg_replace (replace, $str);
?>

Select an option to see the answer and solution.

Which one of the following preg PHP functions is used to take a string, and put it in an array?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$line = "You like dogs. I hate dogs. We should marry."
line);
print_r($sen);
?>

Select an option to see the answer and solution.

Which one of the following is not a preg PHP function?

Select an option to see the answer and solution.

Parameter flags was added in which version of PHP?

Select an option to see the answer and solution.