Thread regex "hallo" dummy (6 answers)
Opened by RPerl at 2007-07-22 17:42

renee
 2007-07-22 18:52
#78745 #78745
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Fast richtig:

Code (perl): (dl )
1
2
3
4
my $lol = 'Hallo';
if($lol =~ /Hal(l)o/ ){
    print $1; 
}


Sonst bekommst Du bei so etwas Probleme:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

use strict;
use warnings;

my $lol = 'Hallo';
($lol) =~ /Hal(l)o/;

my $var = 'Test';
$var =~ /W(e)lt/;
if ($1) { print $1; }
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread regex "hallo" dummy