|
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
Examples The following examples illustrate the use of the RemoveNonDigits function:
stringValue = "$40000" RemoveNonDigits( stringValue )
stringValue is now "40000" |