At present I am using:
/^(ht|f)tp(s?)\:\/\/[0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*(:(0-9)*)*(\/?)([a-zA-Z0-9\-\.\? \,\'\/\\\+&%\$#_]*)?$/
as my regular expression for validating URL.
This is failing to check for URLs like:
domain.com, www.domain.com, m.some.com, m.some.com?test=test, http://www.some.com/?param=%20test
Can someone help me in modifying this? I have few functionality already working fine on this. So couldn't search for a complete new one.
Thanks in advance.