show/hide this revision's text 2 Fixed quoted code

if not(char(myString[0]) not(myString[0] in [0..9]) then //Do something

If you're using Delphi 2009, the TCharacter class in Character.pas has functions like IsDigit to help simplify these kinds of operations.

Once you fix the indexing, of course. :)

show/hide this revision's text 1

if not(char(myString[0]) in [0..9]) then //Do something

If you're using Delphi 2009, the TCharacter class in Character.pas has functions like IsDigit to help simplify these kinds of operations.

Once you fix the indexing, of course. :)