In a Asp.Net WebForms
plication application, I have a TextBox
that I need to validate if it contains any excerpt where <
is followed by any character except whitespace.
For example:
Nesse texto pode existir < com espaço.
Mas não pode <. <+ <? </ <\ <A <0 <*
In this case, RegEx should find eight results = <.
, <+
, <?
, </
, <\
, <A
, <0
(containing the space) . Where <*
represents any alphanumeric character and <
any number.
This RegEx will be used in the A
event of the HTML page via JavaScript and in 0
in Asp.Net.
Thanks for the help!