Need a function that takes a character as a parameter and returns true if it is a letter.
|
|
|
|
|
|
|
Seanyboy's
Of course, this all rarely matters as all of VB6's controls are ANSI only |
||||
|
|
|
This was part of the code posted by rpetrich in response to a question by Joel Spolsky. I felt it needed a post specific to the problem it solves. It really is brilliant.
You may be thinking to yourself, "Will this always work?" The documentation on the UCase and LCase functions, confirms that it will:
|
||||||||||
|
|
|
What's wrong with the following, which doesn't rely on obscure language behaviour?
|
||||||||
|
|
|
|
||
|
|
|
|
I believe we can improve upon this a little more. rpetrich's code will work, but perhaps only by luck. The API call's parameter should be a TCHAR (WCHAR here actually) and not a Long. This also means no fiddling with converting to a Long or masking with &HFFFF. This by the way is Integer and adds an implicit conversion to Long here too. Perhaps he meant &HFFFF& in this case? On top of that it might be best to explictly call the UnicoWS wrapper for this API call, for Win9X compatibility. The UnicoWS.dll may need to be deployed but at least we gain that option. Then again maybe from VB6 this is automagically redirected, I don't have Win9X installed to test it.
|
|||
|
|
|
Looking around a bit came up with the following...
I believe IsCharAlphaA tests ANSI character sets and IsCharAlpha tests ASCII. I may be wrong. |
||||||
|
|
|
|
||
|
|
|
|
It doesn't exactly document itself. And it may be slow. It's a clever hack, but that's all it is. I'd be tempted to be more obvious in my checking. Either use regex's or write a more obvious test.
|
||
|
