Answers for "php count character number of string"

PHP
3

php count specific characters in string

<?php
//you can use the substr_count function
$str = "this is a test string"; 

echo substr_count($str, "s");  //Output: 4
?>
Posted by: Guest on May-23-2021
0

counting a string in php

strlen('your strings here!');
Posted by: Guest on May-10-2021

Code answers related to "php count character number of string"

Browse Popular Code Answers by Language