tags:

views:

55

answers:

1

I want to scrape data from HTML.

The data I want is "Health Niche blogs". What regex to write?

fo width="80%" noWrap>Author: Health Niche Blogs | Published: Se

+3  A: 

Unless you have more specific requirements:

/Author\:\s+(.*?)\s+\|/
Tim Sylvester