PHP Count Specific Characters in String

PHP Count Specific Characters in String

PHP count specific characters in string. Here we will learn how to count specific characters in string or how to count repeated characters in a string php.

How to count specific characters string in PHP

To count specific characters in string or count repeated in a string PHP, you can use PHP function substr_count().

PHP substr_count() Function

The substr_count() function is an inbuilt PHP function that can be used to counts the number of times a substring occurs in a string.

Syntax

The basic sytax of substr_count() is:

substr_count(string,substring,start,length)

Parameter

ParameterDescription
stringIt’s required. Where find occurrences of a substring in a string PHP
substringIt is necessary. This is a string that will be searched in the original string
startOptional. Specifies where in string to start searching. If negative, it starts counting from the end of the string
lengthOptional. Specifies the length of the search

1. count specific characters in string

Suppose we have one string “php count specific characters in string php”, in this string we will count the number of times “php” occurs in string.

Let’s take an example to the count the characters or words in a string.

<?php
$string = "php count specific characters in string php"; 
echo 'output is :- '.substr_count($string,"php");
?>

Output

The output of the above example 1 is given below

 output is :-2

2. find all occurrences of a substring in a string PHP

To find all occurrences of a substring in string PHP. You can see the below example for that:

<?php 
// PHP program to count number of times 
// sub-string appears in original string. 
  
$originalStr = "how to count sub-string in string PHP"; 
$subString = "string"; 
  
$res = substr_count($originalStr, $subString); 
  
echo($res); 
?> 

Output

The output of the above example is given below

 output is :-2

3. count number of character occurrences in a string in PHP without using function PHP

<?php

$text="php - count number of character occurrences in a string in PHP without using function php";
$searchchar="php";
$count="0"; //zero

for($i="0"; $i<strlen($text); $i=$i+1){
    
    $str = explode(' ', $text);

    if($str[$i] == $searchchar){
   
       $count=$count+1;
    }

}

echo $count

?>

Output

The output of the above example is:

  output is :-2 

Conclusion

In this tutorial, you have learned how to count substring in string PHP by using substr_count and without using substr_count() function in PHP.

Recommended PHP Tutorials

  1. Functions: Remove First Character From String PHP
  2. Remove Specific/Special Characters From String In PHP
  3. How to Replace First and Last Character From String PHP
  4. Reverse String in PHP

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *