This method takes a string as input and return a boolean value representing
if the string is or is not alphanumeric.
Namespace:
Abh.Core.Excel2k7.Utilities
Assembly:
Abh.Core.Excel2k7 (in Abh.Core.Excel2k7.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public static bool IsValidAlphaNumeric(
string verifyThis
) |
| Visual Basic (Declaration) |
|---|
Public Shared Function IsValidAlphaNumeric ( _
verifyThis As String _
) As Boolean |
| Visual C++ |
|---|
public:
static bool IsValidAlphaNumeric(
String^ verifyThis
) |
Parameters
- verifyThis
- Type: System..::.String
Pass the string to verify if it is or is not alphanumeric.
Return Value
True is returned if alphanumeric, false if not.
See Also