StripThousandSeparators Function
Returns a string with all occurrences of the Thousands Separator as defined in the regional settings removed.

Unit
QESBPCSConvert

Declaration
Function StripThousandSeparators(const S: string): string;

Description
This routine is used with string to Integer/Float operations to handle "formatted" strings.

Parameters
the String to process

Category
String/Integer Conversion Routines
String/Float Conversion Routines

Implementation

function StripThousandSeparators (const S: string): string;
begin
     Result := StripChFromStr (S, ThousandSeparator);
End;


HTML generated by Time2HELP
http://www.time2help.com