scrapeByRegex
Scrape anything you want using Regex.
- url: The URL from you want to scrape
- regex: Regex that will select a part of the HTML of the URL
- removeTag: Set to True if you want to remove the HTML tags
- String: The HTML tag with its content or just the inner content.
scrapeByRegex("https://unlimitedsheets.com/", "<h1.*<\/h1>", true)
// Unlimited Sheets
scrapeByRegex("https://unlimitedsheets.com/", "<h1.*<\/h1>", false)
// <h1 class="site-title">Unlimited Sheets</h1>
- Scrape any site directly from Google Sheets using RegEx
Last modified 7mo ago