I have a feature class, and one of the fields is "tag". In the tag there are different slices of information stuffed. I need to get the next part: "addr:street"=>"East 79th Street".
The first part "addr:street"=> is always the same, it is the second part that differents every time.
I tried to use the "StringSearcher", Search In: "tag", Regular Expression: "addr:street"=>"([a-zA-Z0-9]+)".
But I now get no matches at all.
Is there anyone who can help me?