Difference between revisions of "Trim"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function Trim(s: AnyString): AnyString; </source> ==Availability== SCAR Divi 3.25 > Current ==Description== Trims all white-sp...") |
(→Description) |
||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Trims all white-spaces at the beginning and | + | Trims all white-spaces at the beginning and ending of a [[AnyString|string]] '''s'''. An extended function with additional functionality is available as [[TrimEx]]. |
==Example== | ==Example== |
Revision as of 00:07, 27 June 2011
Definition
function Trim(s: AnyString): AnyString;
Availability
SCAR Divi 3.25 > Current
Description
Trims all white-spaces at the beginning and ending of a string s. An extended function with additional functionality is available as TrimEx.
Example
begin WriteLn(Trim(' Hello World! ')); end.
Output:
Hello World!