IsBDigit Function | |
Determine if the leftmost character in a string is a binary digit (0 or 1).
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION IsBDigit(
pszString AS STRING
) AS LOGIC
public static bool IsBDigit(
string pszString
)
Request Example
View SourceParameters
- pszString
- Type: String
The string to examine.
Return Value
Type:
Logic
TRUE if the first character of the string is 0 or 1; otherwise, FALSE.
Remarks Examples
These examples demonstrate various results of IsBDigit():
1? IsBDigit("AbcDe")
2? IsBDigit("1abcd")
3? IsBDigit("012345")
4? IsBDigit("21345")
See Also