Hi ! this is my regular expression which i am using for url :
^((http|https|ftp)://)?(([\w-]+\.)+[^#?\s]+)(.*)?(#[\w\-]+)?$
Now it is allowing comma , i dont want to allow comma in it . Kindly help
I found a solution for this :
^((http|https|ftp)://)?(([\w-]+\.)+[^,#?\s]+)([^,]*)?(#[\w-]+)?$
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.