show/hide this revision's text 2 added note about quotes

Delphi strings use a 1-based index, so just rewrite to

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

Also take note of the quotes around the 0..9, otherwise you would be comparing characters to integers.

show/hide this revision's text 1

Delphi strings use a 1-based index, so just rewrite to

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