How do I perform a mass space trim in ArcPro?

735
2
Jump to solution
02-13-2020 07:33 AM
BobBoutiette
New Contributor III

What is the ArcPro equivalent, Arcade or Python, of the mass trim function in ArcMap?

How to perform a mass field trim in ArcPro 

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
DanPatterson_Retired
MVP Emeritus

python has lstrip, rstrip or the combined .strip

: a = " a b c "

a.strip()
'a b c'

View solution in original post

2 Replies
DanPatterson_Retired
MVP Emeritus

python has lstrip, rstrip or the combined .strip

: a = " a b c "

a.strip()
'a b c'
BobBoutiette
New Contributor III

Thanks Dan, much appreciated.

0 Kudos