PHP program to demonstrate the regular expression to count the occurrence of given substring
belongs to collection: PHP Regular Expressions Programs
All Answers
total answers (1)
belongs to collection: PHP Regular Expressions Programs
total answers (1)
Program/Source Code:
The source code to demonstrate the regular expression to count the occurrence of a given substring is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created a string variable $str, which is initialized with "India is a country located in Asia". After that, we used 'i' in the pattern to search case insensitive substring in the specified string. Here we used the preg_match_all() function that will return the total number of occurrences of a specified substring within the string that will be assigned to the variable $count and printed on the webpage using printf() function.
need an explanation for this answer? contact us directly to get an explanation for this answer