What is the ArcPro equivalent, Arcade or Python, of the mass trim function in ArcMap?
Solved! Go to Solution.
python has lstrip, rstrip or the combined .strip
: a = " a b c "
a.strip()
'a b c'
python has lstrip, rstrip or the combined .strip
: a = " a b c "
a.strip()
'a b c'
Thanks Dan, much appreciated.