I have a textarea where Urls are to be entered. What is the regular expression for accepting multiple URLs seperated by space. I am using RegularExpressionValidator for validating. Pls help me.
I am using the regular expression
ValidationExpression="http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?" for accepting single URL.
But I want multiple URLs seperated by space
Nitha Deepak