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
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.