TrimNumbers

From SCAR Divi Manual
Revision as of 17:24, 17 September 2011 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function TrimNumbers(const Str: AnsiString): AnsiString;

Availability

SCAR Divi 3.00 > Current

Description

Removes all characters that are numbers from a string Str and returns it.

Example

begin
  WriteLn(TrimNumbers('1Hello 2World!3'));
end.

Output:

Hello World!

See Also