alexchildress93555@gmail.
New Member
Hi,
I am attempting to use a reserved word that doesn't seem to exist in B4x, the To keyword, in this context:
But in this case it the compiler throws errors if I attempt to do anything but this:
What is an alternative to this that I can use? I would assume that it would have to be something like RegEx or something like that... but I'm unsure how to use it like the To keyword for a specific case?
Thanks,
I am attempting to use a reserved word that doesn't seem to exist in B4x, the To keyword, in this context:
B4X:
Select Case SomeChar
Case "A" To "Z", "a" To "z"
' Identifies a keyword
End Select
But in this case it the compiler throws errors if I attempt to do anything but this:
B4X:
Select Case SomeChar
Case "A", "B","C", ... "Z", "a", "b", "c", ... "z"
' Identifies a keyword
End Select
What is an alternative to this that I can use? I would assume that it would have to be something like RegEx or something like that... but I'm unsure how to use it like the To keyword for a specific case?
Thanks,