I would like to have only the numbers out of a string like this: 083310-0002-815/0000.001?
Whats the best possibility?
Hi Johannes,
You can do this using the re.sub function. Ex:
import re def update(field): return re.sub('[-/.]', '', field)
Great, thanks
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.