|
|
Browse by Tags
All Tags » ASP.NET » regex
-
Hi all, I have a get a piece of text from a document and I don't find the way to it with a singular regEx.
The text has the following ...
-
Hi I need a regular expression for email validation, it should excldue the email addresses with the following special characters.
\|/,;<> and spaces.
The rule for validating the email is : Email address must contain a single @, one or more periods, and any standard characters with the exception of spaces and the ...
-
I'm trying to create a regex that has the following requirements:
1. must be at least 7 characters in length
2. must contain at least 1 digit
3. must contain at least 1 lowercase letter
4. must contain at least 1 uppercase letter
5. must contain at least one of the following symbols: = ! $ % ^ & +
6. It must reject any word that ...
-
I wrote a VB.NET application that parses airline passenger data using Regular Expressions. The passenger's last name appears first followed by a slash. There can be many different data items after that. In the airline data, the passenger name format is:
[] = optional
-[Number]Last Name/First Name/Initial [Middle ...
-
This is my
current regex, for matching template tokens,
at the moment it is not matching inner html "(?<subdata>[.\n\r]*)", i need it to match everything including new lines & whitespace characters.
It uses asp.net for ...
-
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 ...
-
I am assuming you mean that if there is an "@" sign in the text box you want the validator to not allow the text through.
For help with asp.net controls you really should be at the http://aspadvice.com forums. This is for help with regular expressions. The regex you need is
^[^@]+$
So the asp.net you will need is something like ...
|
|
|