Difference between revisions of "TrimOthers"
From SCAR Divi Manual
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
− | function TrimOthers(Str: AnsiString): AnsiString; | + | function TrimOthers(const Str: AnsiString): AnsiString; |
</source> | </source> | ||
Latest revision as of 16:24, 17 September 2011
Definition
function TrimOthers(const Str: AnsiString): AnsiString;
Availability
SCAR Divi 3.00 > Current
Description
Removes all characters that are not numbers or letters from a string Str and returns it.
Example
begin WriteLn(TrimOthers('-Hello World!-')); end.
Output:
HelloWorld