RemoveNonDigits Function

Top  Previous  Next

Removes any non digits from the string. Useful to remove $ signs and other currency symbols from numbers strings.

See also RemoveCommasBetweenQuotes and GetField.

 

Syntax

 

RemoveNonDigits( inputString )

 

Parameters

inputString

 

the string from which to remove the non digits




 

Examples

The following examples illustrate the use of the RemoveNonDigits  function:

 

stringValue = "$40000"

RemoveNonDigits( stringValue )

 

stringValue is now "40000"