I am using arcgis 10.2.2
I have a field in my attribute table called "name" and there is written all in capitals other attributes only lowercase.
I need my attributes standardize leaving only the first letter of each word in uppercase
example 1:
Name |
JOSE LUIS
maria jose
example 2 standardized:
Name |
Jose Luis
Maria Jose
Solved! Go to Solution.
Use the python string function .title(). This will capitalize the first letter of every word in your string making the rest lowercase.
Example
"TEST TEST TEST" becomes "Test Test Test"
Use the python string function .title(). This will capitalize the first letter of every word in your string making the rest lowercase.
Example
"TEST TEST TEST" becomes "Test Test Test"
Great tool, thanks for sharing this.