I am seeking assistance with a project where I need to split a postal address into separate variables to populate a form with individual address components. For example, given an address like:
“Calle Caballero Agro 52, 02148”
But sometimes the clients put the address different, like: Calle Caballero Agro, 52 (02148)… And every client have his own address.
I need to break it down into the following fields:
Type of road: Calle
Name of the road: Caballero Agro
Number of the road: 52
Postal Code: 02148
The form I am working with requires each of these components to be entered into separate fields.
Could anyone guide me on how to automate this process using UiPath?