|
|
Browse by Tags
All Tags » .NET » validate
-
Hi all regex experts
I need a Vb.net regex that excludes any text with html in it.
I'm trying to create a text box with a regular expression validator which will not accept text with html in it such as <b>Bold</>. I'm working with/in ASP.Net 2.0 For this input "<b>Bold</>" should generate an ...
-
Here you go:
(?i)^\[[^\]]+\]\.\[[^\]]+\]\s+(?:LIKE|=|<|>|<>|<=|>=)\s+(?:'[^']*'|\d+)(?:\s+AND\s+\[[^\]]+\]\.\[[^\]]+\]\s+(?:LIKE|=|<|>|<>|<=|>=)\s+(?:'[^']*'|\d+))?\s*$
|
|
|