1

Here is the code:

<div>23 Anywhere Ave<br />Someplace<br />Somewhere 1234</div>

I want to scrape the resulting three lines

23 Anywhere Ave<br />Someplace<br />Somewhere 1234</div>

into separate columns. I can scrape the first string (23 Anywhere Ave) by setting <div> as the front marker and <br /> as the back marker. Get stuck after that. I've tried setting the front marker as <div>(?=)<br />), /<div>(?=)<br />)/ (Outwit apparently require / / when making a regex statement), and <div>/(?=)/<br />)to get the second value but no luck.

I realise that regex is not suitable for parsing HTML, but this post indicates that it's OK in certain contexts within the Outwit architecture.

Community
  • 1
  • 1
L Tyrone
  • 1,268
  • 3
  • 15
  • 24

1 Answers1

0

In automators/scrapers put this Separator: br Then in List of Labels: Street,City,ZipCode

Br, Eusebio.