SQL PHP HTML ASP JavaScript articles and free scripts to download
 

PHP String Triming from left and right


We can remove blank space from left side of any string by using ltrim function.

$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;



Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked

Sections
PHP
JavaScript
ASP
HTML
SQL
Photoshop
Articles SEO
PHP Tutorials
String Functions
PHP Monthly Planner
PHP Introduction
Loops & structure
Array
Date & Time
Functions
Form Handling
File Handling
Math Functions
String Functions
GD Functions
Comment Posting
Content Management
PHP & Ajax
Popular Tutorials
Drop down list
File Upload
Signup script
Member Login
Line Graph
PHP MySQL Paging
PHP Calendar
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.