Thread [RegEx] Domain check und Hash Table Probleme (6 answers)
Opened by burnersk at 2009-08-25 13:19

Linuxer
 2009-08-25 21:59
#124802 #124802
User since
2006-01-27
3891 Artikel
HausmeisterIn

user image
Mit split() wäre auch noch eine Lösung möglich:

Code (perl): (dl )
1
2
3
if ( ( split /\@/, $mail, 2 )[1] eq $domain ) {
# tu was du willst
}


Doku:
http://perldoc.perl.org/functions/split.html
http://perldoc.perl.org/perldata.html#Slices
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread [RegEx] Domain check und Hash Table Probleme