How to Convert String to Sentence Case using PHP

In this tutorial, we are going to learn how to Convert String to Sentence Case using PHP. We all know, in a sentence form, the first letter is capitalized and the following word is lowercased but with the proper nouns and other words must be generally in capitalized word. We are going to convert the string to sentence case. For example, the user comment to a webpage, it will display the string into the web page but you cannot, sure enough, the text from the user is properly formatted or not. In that case, you need to program to convert the text or a string to sentence case before displaying the web page. We are going to use PHP, so you can easily convert any text or string to sentence case. Let’s begin.

PHP Query

This source code will help us to convert the string to sentence case. Take a look,
  1. <?php
  2.  
  3. function text_Example_Case($example_String_Text) {
  4.     $texts = preg_split('/([.?!]+)/', $example_String_Text, -1,PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);
  5.     $newexample_String_Text = '';
  6.     foreach ($texts as $mark => $text) {
  7.         $newexample_String_Text .= ($mark & 1) == 0?
  8.             ucfirst(strtolower(trim($text))) :
  9.             $text.' ';
  10.     }
  11.     return trim($newexample_String_Text);
  12. }
  13.  
  14. $example_String_Text = 'do you have source code, articles, tutorials, web links, and books to share? you <br /> can write your own content here. you can even have your own blog.';
  15. ?>

Markup

This HTML source code is to display the Convert String to Sentence Case.
  1.  
  2. <h2 style="color:blue;">
  3. Convert String to Sentence Case
  4. </h2>
  5. <hr />
  6. <h2 style="color:blue;">
  7. String
  8. </h2>
  9.  
  10. <b>
  11.         do you have source code, articles, tutorials, web links, and books to share? you <br /> can write your own content here. you can even have your own blog.
  12. </b>
  13.  
  14. <h2 style="color:blue;">
  15.         Sentence Case
  16. </h2>
  17. <b style="font-size:18px; font-family:cursive;">
  18.         <?php echo text_Example_Case($example_String_Text); ?>
  19. </b>
  20.  

Output:

Result Hope that this simple yet useful tutorials that I created may help you to your future projects. If you are interested in programming, we have an example of programs that may help you even just in small ways. Share us your thoughts and comments below. Thank you so much for dropping by and reading this tutorial post. For more updates, don’t hesitate and feel free to visit this website more often and please share this with your friends or email me at [email protected]. Practice Coding. Thank you very much.

Add new comment