Posts

Showing posts with the label whitespace

How to remove white space on the left of a strin ?

You can use ltrim() function to remove white symbols at begining of a string, as example shows: $leftTrimmed = ltrim( $oldText );