Thread substr und =~ (27 answers)
Opened by peng0 at 2006-06-12 20:33

renee
 2006-06-12 20:57
#67266 #67266
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Na klar, Du musst nur die Klammern setzen!!

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

use strict;
use warnings;

(my $foo = "Hallo Test hallo") =~ s/\s//g;
print $foo;


Du kannst auch statt "Hallo Test hallo" natürlich auch Dein substr machen!
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 substr und =~