[This is preliminary documentation and is subject to change.]

Filters out all the non digits and returns only the digits back.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string ToDigitsOnly(
	string str
)
Visual Basic (Declaration)
Public Shared Function ToDigitsOnly ( _
	str As String _
) As String
Visual C++
public:
static String^ ToDigitsOnly(
	String^ str
)

Parameters

str
Type: System..::.String
The digit which needs to be filtered out.

Return Value

The string containing only the digits.

See Also