|
|
Browse by Tags
All Tags » email
Showing page 1 of 2 (11 total posts)
-
Hello,
I'm trying to make a CPanel email filter that matches a specific email header and it's related email addresses.
Sample Data:
Resent-To: "User Title or Name - MyCompany" <user1@mydomain.com>, user2@mydomain.com, "user3" <user3@otherdomain.com>
...
-
Hi,
I want to build a reg ex so that the email address xyz@its.j&j.com can pass through the validation, in the asp.net regular expression.
I got one expression from from regexlib, ^[\w-\.]+@([\w-]+\.)+([\w-]){2,4}$
But cannot find the correct one so that it will work.
Let me know if any one has a soultion...
-
I'm a regex noob - but excited that I found this site.
Trying to figure out if this is even possible to do use regex and javascript.
I would like to parse a block of text that is stored in a javascript variable. This text is a mix of contact information and other miscellaneous information - some of which is of no value.
Ideally, ...
-
Platform:web browsers.(it uses JavaScript)
Activity:validation.
I have to ensure that an email address entered by use don't exceed 100 characters.
for this i can use regular expression
what is the regular expression for an email address not exceeding 100 characters
-
I have found a great deal of advice here in the forum, and "borrowed" a good many Regex codes from you all. Thank you very much. I'm learning how Regex works, but in this case I am pressed for time as this project is going live very soon.
There are a good deal of Regex to validate an email address. I found a great one to ...
-
First off let me say I'm a bit over my
head here. Not regex part but host the language of the regex engine.
Many moons ago I posted a blog article
stating why you could not write a regex that validated an e-mail
address 100%. Well this is still true, however in that
posted I also stated that the pattern was so massive ...
-
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 have found some emails with data in the body (regex and target data see below) where we have at the beginning of a line, text followed by a colon and space which is translated as a column. How can I modify the expression to ignore anything below the first blank line (as Susan mentioned above is the identifier of the body begin)?
Thanks ...
-
I'm trying to use Trend Micro's Security Dashboard to filter a lot of spam we've been getting that is in the following form:
From: various crap email addresses (different every time)
To: various internal email addresses
Subject: blank, or occasionally containing one word
Body: always blank
Attachment: A small pdf file of ...
-
hi i have this javascript regular expression for testing emails
^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$
the problem is that the email should be optional so the regular expression should match:
nothing or ^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$
1
|
|
|