Leser: 2
|< 1 2 3 >| | 28 Einträge, 3 Seiten |
1
2
3
$data_string = "hallo test und so weiter";
$string_ohne_leerzeichen = substr($data_string, $pos-1, $laenge) =~ s/\s//g;
1
2
3
4
5
6
7
8
#!/usr/bin/perl
use strict;
use warnings;
my $foo = "Hallo Test hallo";
$foo =~ s/\s//g;
print $foo;
1
2
3
4
5
6
7
8
#!/usr/bin/perl
use strict;
use warnings;
my $foo = "Hallo Test hallo";
(my $neue_var = $foo) =~ s/\s//g;
print $foo;
1
2
3
4
5
6
7
#!/usr/bin/perl
use strict;
use warnings;
(my $foo = "Hallo Test hallo") =~ s/\s//g;
print $foo;
|< 1 2 3 >| | 28 Einträge, 3 Seiten |