Function: Strip

Usage: @strip( String to_strip ) This function deletes white spaces (' ', '\t', '\n' and '\r') before and after the string passed in arguments. <#cws
$string = "    Hello !    "
$string = @strip($string)
@print("String is: " + $string)
#>
Result: String is: Hello !

See also

substr