API15:JString/trim
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
UTF-8 aware replacement for trim() Strip whitespace (or other characters) from the beginning and end of a string Note: you only need to use this if you are supplying the charlist optional arg and it contains UTF-8 characters. Otherwise trim will work normally on a UTF-8 string
Syntax
trim($str, $charlist=FALSE)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | the string to be trimmed | |
| $charlist | FALSE | the optional charlist of additional characters to trim |
Returns
string the trimmed string
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
function trim( $str, $charlist = FALSE ) { jimport('phputf8.trim'); if ( $charlist === FALSE ) { return utf8_trim( $str ); } else { return utf8_trim( $str, $charlist ); } }
[Edit See Also] SeeAlso:JString/trim
Examples
<CodeExamplesForm />
