Strips the input string of any character that is not 0 thru 9.

Namespace: Asi.iBO
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public static string StripNonNumeric(
	string number
)
Visual Basic
Public Shared Function StripNonNumeric ( _
	number As String _
) As String
Visual C++
public:
static String^ StripNonNumeric(
	String^ number
)

Parameters

number
Type: System..::..String
The string to be stripped.

Return Value

The string with any non-numeric character removed.

See Also