Hi,
I want to select those records who's start with numeric value in Arcgis10.2. could you please suggest me.
Thanks in advance
In Select by Attributes, try
Name >= '0' AND Name < ':'
where Name is the FieldName
name = '0.ab'
>>> name[0].isnumeric()
True
In python....
as a demo... since technically a field beginning with a '.' doesn't begin with a number
Thanks for the python snippet. Actually I mentioned a colon, which comes right after the value of 9 in ASCII Table.
old eyes... . : are starting to look alike
Thanks for support....