Thread Regular Expressions with Brackets (3 answers)
Opened by Gast at 2009-01-26 11:44

renee
 2009-01-26 12:25
#118330 #118330
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Es gibt noch @+:

Code (perl): (dl )
1
2
3
4
5
6
7
#!/usr/bin/perl

use strict;
use warnings;

'Dies ist ein Test' =~ /(D).*?(t).*?(T)(e)/;
print $#+;
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 Regular Expressions with Brackets