Leser: 1
|< 1 2 3 >| | 21 Einträge, 3 Seiten |
m/\w+@.*?\.\w{2,}/g;
m/.+?@.+\.\w{2,}/g;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package Sources::Address;
use strict;
use warnings;
use Mail::Address;
use vars qw(@ISA);
@ISA = qw( Mail::Address );
sub _extract_name
{
local $_ = shift || '';
# Bug in unicode \U, perl 5.8.0 breaks when casing utf8 in regex
if($] eq 5.008)
{ require utf8;
eval 'utf8::downgrade($_)';
}
# trim whitespace
s/^\s+//;
s/\s+$//;
s/\s+/ /;
# Disregard numeric names (e.g. [EMAIL=123456.1234@compuserve.com]123456.1234@compuserve.com[/EMAIL])
return "" if /^[\d ]+$/;
# remove outermost parenthesis
s/^\(|\)$//g;
# remove outer quotation marks
s/^"|"$//g;
# remove embedded comments
# s/[^\\]\(.*[^\\]\)//g;
s/^\s*\(((?:[^)\\]+|\\.)*)\)//;
# remove quotes
s/\\(.)/$1/g;
# reverse "Last, First M." if applicable
s/^([^\s]+) ?, ?(.*)$/$2 $1/;
s/,.*//;
# Set the case of the name to first char upper rest lower
# Upcase first letter on name
s/\b([a-zA-ZäüöÄÜÖß]+)/\L\u$1/igo;
# Scottish names such as 'McLeod'
s/\bMc([a-zA-ZäüöÄÜÖß])/Mc\u$1/igo;
# Irish names such as 'O'Malley, O'Reilly'
s/\bo'([a-zA-ZäüöÄÜÖß])/O'\u$1/igo;
# Roman numerals, eg 'Level III Support'
s/\b(x*(ix)?v*(iv)?i*)\b/\U$1/igo;
# some cleanup
s/\[[^\]]*\]//g;
s/(^[\s'"]+|[\s'"]+$)//g;
s/\s{2,}/ /g;
return $_;
}
sub name
{
my $me = shift;
my $phrase = $me->phrase;
my $addr = $me->address;
$phrase = $me->comment unless(defined($phrase) && length($phrase));
my $name = _extract_name($phrase);
# first.last@domain address
if($name eq '' && $addr =~ /([^\%\.\@_]+([\._][^\%\.\@_]+)+)[\@\%]/o)
{
($name = $1) =~ s/[\._]+/ /go;
$name = _extract_name($name);
}
if($name eq '' && $addr =~ m#/g=#oi)
# X400 style address
{
my ($f) = $addr =~ m#g=([^/]*)#oi;
my ($l) = $addr =~ m#s=([^/]*)#io;
$name = _extract_name($f . " " . $l);
}
return length($name) ? $name : undef;
}
1;
1
2
3
my $string = '<html> [EMAIL=email@adresse.tld]email@adresse.tld[/EMAIL] </html>';
my (@emails) = $string =~ m/([\s]+\@[^\s]+)/g;
# jetzt adressen überprüfen
1
2
3
4
5
$text='xxxxxx [EMAIL=1.birne@onlinehome.de]1.birne@onlinehome.de[/EMAIL] xxxxxx [EMAIL=2.apfel@gmx.de]2.apfel@gmx.de[/EMAIL] xxxxx [EMAIL=3_phirsich@aol.com]3_phirsich@aol.com[/EMAIL]
xxxxxxxxx 4_pflaume@web.info xx [EMAIL=5.kirsche@plus-minus.de]5.kirsche@plus-minus.de[/EMAIL] ';
$such='[a-zA-Z0-9\.\-\_]+'; #alles was erlaubt ist
(@emails) = $text =~ m/($such\@$such)/gi;
[E|B,30.12.2003, 23:44]Mail::Verify ist auch nicht schlecht. Und vor allem leicht zu handhaben!
|< 1 2 3 >| | 21 Einträge, 3 Seiten |