I found many solutions, but none was useful for me.
Let's say, as an example, I want to find URLs that start with www.
and end with a space or ?
. In this case, I really mean it ends in a ?
, not that it's necessarily a CGI-related URL.
I'm trying to use the regex
var r = /(^|[s?])(www..+?(?=([s]|?|($))))/g;
My sample use: http://jsfiddle.net/DKNat/2/
How can I use ?
in a regex to prevent the end of the URL containing /
before ?
?
http://jsfiddle.net/DKNat/11/
I can't solve last prob with DOT at the end of url.
Can any body help?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…