| StripThousandSeparators Function | 
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 | 
| S | the String to process | 
Category
String/Integer Conversion Routines
String/Float Conversion RoutinesImplementation
 
| function StripThousandSeparators (const S: string): string;
begin
     Result := StripChFromStr (S, ThousandSeparator);
End; | 
|  |