i am dynamically validating regular expression in which the regular expression are from database
ok so the thing is happening that \ is replaced by \\ which is not validating the email
i have Regex RegExp = new Regex("@" + IsMandatoryTextTextAreaFiles.vcr_RegularExpression, RegexOptions.Compiled);
in which IsMandatoryTextTextAreaFiles.vcr_RegularExpression=\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* .
So what to do now?