$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 ";
}
panta | 29-12-2014 |
nice tutorials , much love and appreciations |