Answers for "preg_match in php"

PHP
2

preg_match in php

<?php
//Syntex : int preg_match( $pattern, $input, $matches, $flags, $offset)
  
// Declare a variable and initialize it 
$str = "Check For Testing."; 
  
// case-Insensitive search for the word "Check" 
if (preg_match("/\bCheck\b/i", $str, $match))  
    echo "Matched!"; 
else
    echo "not matched";   
  

// Output : Matched
?>
Posted by: Guest on June-19-2020
1

preg_match in php

<?php
   $line = "Vi is the greatest word processor ever created!";
   // perform a case-Insensitive search for the word "Vi"
   
   if (preg_match("/\bVi\b/i", $line, $match)) :
      print "Match found!";
      endif;
?>
Posted by: Guest on October-29-2020
0

preg_match in php

<?php
$my_email = "[email protected]";
if (preg_match("/^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$/", $my_email)) {
echo "$my_email is a valid email address";
}
else
{
  echo "$my_email is NOT a valid email address";
}
?>
Posted by: Guest on October-29-2020
0

preg_match in php

<?php
$my_url = "www.guru99.com";
if (preg_match("/guru/", $my_url))
{
	echo "the url $my_url contains guru";
}
else
{
	echo "the url $my_url does not contain guru";
}
?>
Posted by: Guest on October-29-2020
0

preg_match in php

<?php

$my_text="I Love Regular Expressions";

$my_array  = preg_split("/ /", $my_text);

print_r($my_array );

?>
Posted by: Guest on October-29-2020
0

preg_match in php

int preg_match (string pattern, string string [, array pattern_array], [, int $flags [, int $offset]]]);
Posted by: Guest on October-29-2020
0

preg_match in php

<?php
function_name('/pattern/',subject);
?>
Posted by: Guest on October-29-2020
-2

preg_match in php

<html>
   
   <head>
      <title>Hello World</title>
   </head>
   
   <body>
      <?php echo "Hello, World!";?>
   </body>

</html>
Posted by: Guest on October-29-2020

Code answers related to "preg_match in php"

Browse Popular Code Answers by Language