I have a string here:
Good Day,I would like to $1000 (for example remove these parenthesis) $test $ asdf [and remove these brackets] inquire the price of the 3D product name here. Currently we have the other product name here which I believe has an accuracy of about 0.0005 199 200. http://www.example.com this is a test
I have a regex linked here: https://regex101.com/r/yE4kW6/7
Which has this regex in it:
[^\w\s|https?:\/\/.\-*\s]|\W*\b\d+(?:\.\d+)?\b
What I'm trying to do now is have it match the entire URL. It seems that my |https?:\/\/.\-*\s
is finding the url, but it's ignoring it, possible because the ^
at the start of that set? I could use some help having it match URLs within a string.