ComponentOne Input for WinForms
C1.Win.C1Input.4.5.2 Assembly / C1.Win.C1Input Namespace / CharHelper Class / IsAlphaOrDigit Method / IsAlphaOrDigit(String,Int32) Method
A string.
The character position in s.

In This Topic
    IsAlphaOrDigit(String,Int32) Method
    In This Topic
    Indicates whether the character at the specified position in the specified string is a alphabet letter or digit.
    Syntax
    'Declaration
     
    Public Overloads Shared Function IsAlphaOrDigit( _
       ByVal s As String, _
       ByVal index As Integer _
    ) As Boolean
    public static bool IsAlphaOrDigit( 
       string s,
       int index
    )

    Parameters

    s
    A string.
    index
    The character position in s.

    Return Value

    true if the character at position index in s is a alphabet letter or digit; otherwise, false.
    See Also