TrimOthers
From SCAR Divi Manual
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