What is DevRel? | What is Developer Relations ?
A to Z Full Forms and Acronyms

How to demonstrate the quantifiers in pattern to search a string using a regular expression in PHP | PHP program

Jun 24, 2021 PHP, 302 Views
How to demonstrate the quantifiers in pattern to search a string using a regular expression in PHP | PHP program

How to demonstrate the quantifiers in pattern to search a string using a regular expression in PHP | PHP program

We will demonstrate the quantifiers in a pattern to search a string using a regular expression, here we will use the preg_replace() function.

<?php



$str = "There are five bananas in the bucket";
$pattern = "/ba(na){2}/i";

if (preg_match($pattern, $str) == 1) 
    printf("Found");
else 
    printf("Not Found");
?>

 

A to Z Full Forms and Acronyms
Nitin Pandit

Nitin Pandit

With over 10 years of vast development experience with different technologies, Nitin Pandit is Microsoft certified Most Valued Professional (Microsoft MVP) with a rich skillset that includes developing and managing IT/Web-based applications in different technologies, such as – C#.NET, ADO.NET, LINQ to SQL, WCF, and ASP.NET 2.0/3.x/4.0, WCF, WPF, MVC 5.0 (Razor), and Silverlight, along with client-side programming techniques, like jQuery and AngularJS. Nitin possesses a Master’s degree in Computer Science and has been actively contributing to the development community for its betterment. He has written more than 100 blogs/articles and 3 eBooks on different technologies to help improve the knowledge of young technology professionals. He has trained more than one lakh students and professionals, as a speaker in workshops and AppFests, conducted in more than 25 universities in North India.

Related Article

Cookies.

By using this website, you automatically accept that we use cookies. What for?

Understood