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
Přihlášení členové mohou přispívat, sledovat aktualizace a další. Jste tu noví? Zaregistrujte si bezplatný účet.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.