Hello,
I am trying to extract this address using a get text activity .
This is what the get text extracts : “721 Green Street AtlanticCity NJ 08401”
but this is what it should have been : “721 Green Street Atlantic City NJ 08401”
there should have been a space btwn the Atlantic and the city . removing the space really affects the address lookup. how do i solve this as i am out of ideas
Another option would be to check if there is any property within the UiExplorer, that contains the full address, with the space included, and if that’s the case, you can use a “Get Attribute” activity in order to get the address.
Hello @ppr Thanks so much for this , this worked i can now see <'break> which indicates a break and from here i can do a simple string manipulation to replace the with space , also appreciated @ignasi.peiris your suggestion was also close as it enabled me explore more attributes within the get attribute activity.
however I am faced with another issue , This time the innerhtml can be an actual html link or just a html text . i.e if the address was a hyperlink it would be
@“<td uipath_custom_id=”“23"”>
<a href=““Google Maps"” target=”“_blank”“>721 Green Street<'br>Atlantic City NJ 08401
”
and if the address was normal html it would be “721 Green Street<'br>Atlantic City NJ 08401” .
how do i extract “721 Green Street<'br>Atlantic City NJ 08401” perfectly in both ways?