The characters allowed are A to Z, a to z, 0 to 9. The least amount of code or a single function would be best as the system is time critical on response to input.
|
1
|
|||||
|
|
|
|
||
|
|
|
|
OnKeypress event begin if not (key in ['A'..'Z','a'..'z','0'..'9']) then Key := #0; end; |
||||
|
|
|
Just to add a remark. The solution using a set is fine in Delphi 7, but it can cause some problems in Delphi 2009 because sets can't be of char (they are converted to ansichar). A solution you can use is:
But the most versatile way is of course:
In that case you can use ValidChar in multiple locations and if it need to be changed you only have to change it once. |
||
|
|
|
|
If I understand you correctly you could use a function like this:
This will use PChar for highest speed (at the cost of less readibility). Edit: Re the comment by gabr about using DestPtr[0] instead of DestPtr^: This should compile to the same bytes anyway, but there are nice applications in similar code, where you need to look ahead. Suppose you would want to replace newlines, then you could do something like
and therefore I don't usually use the ^. BTW, does anybody have an idea how to format this in a way that the highlighting works correctly? |
||||||||
|
