I’m using Blockspring to scrape data, which is in paragraphs. I want to separate the paragraphs, which have 2 line breaks in between them. I can do this on Regexr, but Bubble doesn’t recognize 2 line breaks correctly - rather, Bubble recognizes single and double line breaks using the below regex pattern (which should only detect double line breaks).
This is the regex pattern I use (without the space in front of asterisks), which works on Regexr:
. *[\s\S] *?(\n|\r){2,}
This is the example text:
Example paragraph 1
Blah blah blah blah blahExample pargraph 2
blah blah blah blah blah again
blah blah blah blah blahExample paragraph 3
The quick brown fox…
Here’s the regexr link: RegExr: Learn, Build, & Test RegEx
Any insight appreciated! Sherman