I want a regrex for URl like this --
http://stackoverflow.com/ with allows only backslash in the end
Thanks
I want a regrex for URl like this --
http://stackoverflow.com/ with allows only backslash in the end
Thanks
^http(s)?://[^\\]+\\$
This is very, very, very general. So it lets the parts between http
and the backslash at the end let whatever they want. If you wnat further matching there you have to specify what to match.
Hi, I am facing this problem. "^http(s)?://[^\]+\$" its not working.