$text= " This is my text";
echo $text;
$text=ltrim($text);
echo $text;
Same way we can remove blank space from right side of any string by using rtrim() function.
$text= "This is my text ";
echo $text;
$text=rtrim($text);
echo $text;
To remove extra blank space, line break, carriage return from both sides ( left and right ) of a string we can use trim() function
$text= " This string has blank space at both sides ";
echo $text;
$text=trim($text);
echo $text;
We can remove chars from the end of the string like this.
$str=' Hello +';
echo rtrim($str,'+');
We removed the extra '+' at the end of the string, similarly we can remove extra , or any other chars from the end of the string.
$str=' Hello Welcome';
echo rtrim($str,'come');
Output is hereHello Wel
$new_string=str_replace(' ','',$string);
echo $new_string;
$string='ABCD XYZ';
if (strstr($string,' ')) {
echo " Blank space is present ";
}else{
echo " Blank space is NOT present ";
}
Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.
| panta | 29-12-2014 |
| nice tutorials , much love and appreciations | |