Difference between revisions of "TrimLetters"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function TrimLetters(Text: AnsiString): AnsiString; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Remove...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
− | function TrimLetters( | + | function TrimLetters(const Str: AnsiString): AnsiString; |
</source> | </source> | ||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Removes all characters that are letters from a [[AnsiString|string]] ''' | + | Removes all characters that are letters from a [[AnsiString|string]] '''Str''' and returns it. |
==Example== | ==Example== |
Latest revision as of 16:24, 17 September 2011
Definition
function TrimLetters(const Str: AnsiString): AnsiString;
Availability
SCAR Divi 3.00 > Current
Description
Removes all characters that are letters from a string Str and returns it.
Example
begin WriteLn(TrimLetters('-Hello World!-')); end.
Output:
- !-