views:

22

answers:

1

what is regular expression validator for the textbox which doesnot contains character like "< >" as a string input

A: 
<[^<]+?>

This Regex will match "< >" pair. Add logic to your code to handle situation when this match is found

J Angwenyi
Not what's been asked.
Tomalak

related questions