PHP tutorial-String manipulation

String manipulation in PHP


PHP provides a rich set of functions to manipulate strings. In this topic, we will discuss some common functions used by PHP developers to remove spaces from a string, count the number of characters of a string, convert a string to contain upper case or lower case letters, split a string or join strings, get substrings from a string,  compare strings, search for a substring in a string, and replace and old substring with a new substring of a string, etc.

trim, ltrim, and rtrim functions

trim, ltrim, and rtrim functions are used to remove space from a string.

-trim(String) removes leading and trailing space from the string.

-ltrim(String) removes leading spaces.

-rtrim(String) removes trailing spaces.

Example:

<?php
$str=" PHP web development ";
echo trim($str)."<br>";//remove spaces at the beginning and the end
echo ltrim($str)."<br>";//remove spaces at the beginning only
echo rtrim($str)."<br>";//remove spaces at the end only
?>





comment

Posted comments

san:

It is easy to follow PHP lessons.

03-15-2013

ukilik:

Thank u for useful web tips...

11-15-2012

maxxsaiyan123:

sap.net is so more comfortable for networking process in LAN .........
-----------------
MAURYA SOFTWARE
[url="http://mauryasoft.in] MAURYA SOFTWARE [/url]

10-29-2012

dano:

Good javascript tutorial
Thank

10-26-2012


...........................................................................................................Home | Forum | About | Contact
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word.
However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.
Copyright @ 2011-2013 worldbestlearningcenter. All Rights Reserved.
Computer-Wbest
Web Scripts Tips
Download
Related Posts