Given a QString that can have an unknown number of URL's in it...
How can I use QRegExp to wrap HTML anchor tags around only the URL portions (with the URL itself as clickable label).
e.g.
input: "this is www.cnn.com, that is https://www.mybank.com"
output: "this is <a href="www.cnn.com">www.cnn.com</a>, that is <a href="https://www.mybank.com">https://www.mybank.com</a>