6 Einträge, 1 Seite |
1
2
3
4
5
C:\Daten\perl>perl
$test1 = "Max Muster \<max-muster@muster_test-2.de\>foo-bar-sonstwas-oderauchnix\>";
print $test1;
^Z
Max Muster <max-muster-2.de>foo-bar-sonstwas-oderauchnix>
1
2
3
4
5
6
7
8
9
C:\Daten\perl>perl
use strict;
use warnings;
my $test1 = "Max Muster \<max-muster@muster_test-2.de\>foo-bar-sonstwas-oderauchnix\>";
Possible unintended interpolation of @muster_test in string at - line 3.
print $test1;
^Z
Global symbol "@muster_test" requires explicit package name at - line 3.
Execution of - aborted due to compilation errors.
1
2
3
4
5
6
7
C:\Daten\perl>perl
use strict;
use warnings;
my $test1 = 'Max Muster <max-muster@muster_test-2.de>foo-bar-sonstwas-oderauchnix>';
print $test1;
^Z
Max Muster <max-muster@muster_test-2.de>foo-bar-sonstwas-oderauchnix>
1
2
3
4
5
$test = 'Max Muster <max-muster@muster_test-2.de>foo-bar-sonstwas-oderauchnix>';
if ($test =~ /\@([^>]+)>/) {
print "domain: $1\n";
}
if ($test1 =~ /\@(.*?)>/)
if ($test1 =~ /\@(.+)>/)
1
2
~/entwicklung 115> perl -le 'my $string = q~Dies ist ein Test.~; my ($found) = $string =~ /(.*)i/; print $found'
Dies ist e
1
2
~/entwicklung 116> perl -le 'my $string = q~Dies ist ein Test.~; my ($found) = $string =~ /(.*?)i/; print $found'
D
6 Einträge, 1 Seite |