Small and Capital Letters Count in PHP

In this tutorial, we are going to create a simple program that can count small and capital letters in the webpage and it's called Small and Capital Letters Count in PHP. If you are looking for this kind of program then you are at the right place. This simple program is written using PHP and HTML. This is a very short PHP query that can count the number of Small and Capital letters in a given word by the user enters in the TextBox. This simple source code is very simple to use yet easy to understand. Let's create, so you can have this simple program and try it to your computer. Live Demo below: How to Create it First, we are going to create our simple markup and it contains the TextBox and the button to count the small and capital letters given by the user. Source code look like this:
  1. <form method="post">
  2.    <div>
  3.       <label>Give Capital and Small Letters to Count</label>
  4.       <input type="text" name="string_word" placeholder="Give Capital and Small Letters to Count . . . . ." autofocus="autofocus" />
  5.    </div>
  6.    <button type="submit" name="count_letter">Count . . . . .</button>
  7. </form>
The source code will look like this in the photo below. Result We create a simple query where the small and capital letters separate. The purpose of this query, our program will know the format of small and capital letters and to have an easy count when the button hit by the user.
  1. <?php
  2.  
  3. function count_Capital_Letter($string_letter)
  4.         {
  5.         return strlen(preg_replace('/[^A-Z]+/', '', $string_letter));
  6.         }
  7.  
  8. function count_Small_Letter($string_letter)
  9.         {
  10.         return strlen(preg_replace('/[^a-z]+/', '', $string_letter));
  11.         }
  12. ?>
Using the PHP query below, getting the information from the user enters in the TextBox, so we can get the desired word or phrase from the user then this simple query will get it and count the small and capital letters given from the user.
  1. <?php
  2. if (isset($_POST['count_letter']))
  3.         {
  4.         $string_word = $_POST['string_word'];
  5.         $result1 = count_Capital_Letter($string_word);
  6.         $result2 = count_Small_Letter($string_word);
  7. ?>
After executing the source code above, in the source code below, used to display the result count of small and capital letters. Look the simple markup below with PHP source code to display the result.
  1. <div>
  2.    <button type="button"><span>&times;</span></button>
  3.    The word given by the user is <strong style="font-size:20px;"><?php echo $string_word; ?></strong>
  4. </div>
  5. <div>Count of Capital Letters is <strong style="font-size:20px;"><?php echo $result1; ?></strong></div>
  6. <div>Count of Small Letters is <strong style="font-size:20px;"><?php echo $result2; ?></strong></div>
This would be the output Result

Here's the full source code

Study the source code and try this simple program to your computer. Enjoy coding. Thank you.
  1. <div style="width:50%;">
  2.  
  3. <form method="post">
  4.   <div>
  5.     <label>Give Capital and Small Letters to Count</label>
  6.     <input type="text" name="string_word" placeholder="Give Capital and Small Letters to Count . . . . ." autofocus="autofocus" />
  7.   </div>
  8.   <button type="submit" name="count_letter">Count . . . . .</button>
  9. </form>
  10.  
  11. <?php
  12.  
  13. function count_Capital_Letter($string_letter)
  14.         {
  15.         return strlen(preg_replace('/[^A-Z]+/', '', $string_letter));
  16.         }
  17.  
  18. function count_Small_Letter($string_letter)
  19.         {
  20.         return strlen(preg_replace('/[^a-z]+/', '', $string_letter));
  21.         }
  22.  
  23. if (isset($_POST['count_letter']))
  24.         {
  25.         $string_word = $_POST['string_word'];
  26.         $result1 = count_Capital_Letter($string_word);
  27.         $result2 = count_Small_Letter($string_word);
  28. ?>
  29.  
  30. <br />
  31.  
  32. <div>
  33.   <button type="button"><span>&times;</span></button>
  34.   The word given by the user is <strong style="font-size:20px;"><?php
  35.         echo $string_word; ?></strong>
  36. </div>
  37.  
  38. <div>Count of Capital Letters is <strong style="font-size:20px;"><?php
  39.         echo $result1; ?></strong></div>
  40. <div>Count of Small Letters is <strong style="font-size:20px;"><?php
  41.         echo $result2; ?></strong></div>
  42.  
  43. <?php
  44.         } ?>
  45.  
  46. </div>
If you have a question regarding this simple program, kindly leave a comment below. Enjoy coding. Thank you.

Add new comment