IsAlphaNum Function | |
Determine if the leftmost character in a string is alphanumeric..
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION IsAlphaNum(
cSource AS STRING
) AS LOGIC
public static bool IsAlphaNum(
string cSource
)
Request Example
View SourceParameters
- cSource
- Type: String
The string to examine.
Return Value
Type:
LogicTRUE if the first character is either alphabetic or numeric otherwise FALSE.
See Also