I hope this revives this old and never answered question.
1. Never mind what I am trying to do.
If editing an attribute table
What , if any are the wild cards that can be used in Find And Replace
2. In general what are the wild cards that can be used in a calculate field for strings? For Number?
Since folks are rather concreate and must have examples.
3.
A merge tool evident got corrupted and converted an address field from this
3594 CHERRY ST HOUSTON 77026
to
3594 CHERRY ST HOUSTON 770263594 CHERRY ST HOUSTON 77026 in every line of a 180K line table.
That is whatever the original address, it appears 2* in that field.
Because I can work with
3594 CHERRY ST
I had hoped to replace every line with the text Houston 77 and any and all text after it with nothing.
Find and Replace can find Houston 77, but * . % did not work as wild cards.
At least 7 variations in either Python or arcade using Split, or Replace , ran, but changed nothing in any line
example !USER_FullAddress!.replace("Houston 77.","")
!USER_FullAddress!.split("Houston 77.")[0]
$feature.USER_FullAddress(Replace"Houston 77%")[0]
all ran and changed nothing.
Suggestions please?