

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Program to find how many times a character appears in a string in PHP
Example
<?php $str = "welcome to tutorials point"; $str = str_replace(" ","",$str); $arr = str_split($str); foreach ($arr as $key =>$val){ if (!isset($output[$val])){ $output[$val] = 1; } else{ $output[$val] += 1; } } foreach($output as $char =>$number){ echo $char." ".'appears '. $number." ".'times'."\n"; } ?>
Output
w appears 1 times e appears 2 times l appears 2 times c appears 1 times o appears 4 times m appears 1 times t appears 4 times u appears 1 times r appears 1 times i appears 2 times a appears 1 times s appears 1 times p appears 1 times n appears 1 times
- Related Questions & Answers
- Get count of how many times a string appears in a MySQL column?
- Count how many times the substring appears in the larger String in Java
- Counting how many times an item appears in a multidimensional array in JavaScript
- Number of times a string appears in another JavaScript
- Python Program to Determine How Many Times a Given Letter Occurs in a String Recursively
- Python Program to find out how many times the balls will collide in a circular tube
- PHP program to check if a string has a special character
- Python program to find Most Frequent Character in a String
- Python program to find Least Frequent Character in a String
- Check if max occurring character of one string appears same no. of times in other in Python
- Program to count how many times we can find "pizza" with given string characters in Python
- C++ Program to Find the Frequency of a Character in a String
- In how many ways we can convert a String to a character array using Java?
- How to find the one integer that appears an odd number of times in a JavaScript array?
- C Program to find maximum occurrence of character in a string
Advertisements