I need a regular exp urgently.....

Are you missing a feature? Request its implementation here.
chints

I need a regular exp urgently.....

Post by chints »

Hi i need a regular expression urgently for validating a field which has following rules:
1. There has to be atleast one non numeric character
2. '<' '>' and '|' shld not be allowed.

HELLLLLLPPP
george
Site Admin
Posts: 2095
Joined: Thu Jan 09, 2003 2:58 pm

Post by george »

Hi,

The following pattern should work:
[^><\|]*[^0-9><\|][^><\|]*
That is zero or more characters different from ><| followed by a character different from 0123456789><| followed by zero or more characters differnt from ><|.

Best Regards,
George
Post Reply