I need a tool or formula to remove for Address field - cleaning up data
@hi2019 ,
Though it may not sound very fancy, I would use Formula tool, as you can put in as many functions as you like.
Input / Output data
| Input | Output |
| !"#$%&'()*+,-./ | & |
| 0123456789:;<=>? | 123456789 |
| @ABCDEFGHIJKLMNO | ABCDEFGHIJKLMNO |
| PQRSTUVWXYZ[\]^_ | PQRSTUVWXYZ |
| `abcdefghijklmno | abcdefghijklmno |
| pqrstuvwxyz{|}~ | pqrstuvwxyz |
Expressions in Formula tool
Output = ReplaceChar([Input], "'.,#", "")
Output = ReplaceChar([Output], "/+", " ")
Output = ReplaceChar([Output], '!"$%()*-:;<=>?@[\]^_`{|}~', "")
Output = REGEX_Replace([Output], "^\s\s+", "")
Output = REGEX_Replace([Output], "\s\s+$", "")
