I have the following string
<p>www.test.com</p><p><br></p><p>https://cust-portal-v2-ciuk-uk.javelin.g4s.com/dashb</p><p>www.link.com</p>
I want to urlize it using a regex
const regex = (?:(?:https?://)|(?:www.))[^\s]+
What I expect is to have 3 matches, instead of a single one
How can I alter the regex to find each link? And also without the closing tag of the paragraph
</p>

