Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

How to count the letters, spaces, numbers and other characters of a string in PHP

1 Answer

0 votes
function countChars($s) {
    $letters = $spaces = $numbers = $otherchars = 0;
           
    for ($i = 0; $i < strlen($s); $i++) {
        if (ctype_alpha($s[$i])) {
                $letters++;
        }
        else if (ctype_digit($s[$i])) {
                $numbers++;
            }
        else if (ctype_space($s[$i])) {
                $spaces++;
            }
        else {
                $otherchars++;
            }
    }
    echo "letters: " . $letters . "\n";
    echo "spaces: " . $spaces . "\n";
    echo "numbers: " . $numbers . "\n";
    echo "others: " . $otherchars . "\n";
}
         
$s = "PHP $100%     Prog()ramming   99 !!!";
           
countChars($s);
 
 
 
 
 
/*
run:
 
letters: 14
spaces: 10
numbers: 5
others: 7
 
*/

 



answered Aug 7, 2021 by avibootz
edited Aug 7, 2021 by avibootz
...