Thread Stringmanipulation (2 answers)
Opened by Knowbody at 2009-10-25 18:54

havi
 2009-10-25 21:37
#127314 #127314
User since
2003-08-04
2036 Artikel
BenutzerIn
[Homepage]
user image
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use warnings;
use strict;

my $string = "11875-Weihnacht-Tag.shtml";

my @cart_data = split (/\|/, $string);

print join(";", @cart_data);

Du siehst hier, das durch diese Anweisung $string nicht manipuliert wird...

Um auf deine nächste Frage einzugehen (%20 in -)
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use warnings;
use strict;

my $string = "11875%20Weihnacht%20Tag.shtml";

$string =~ s%\%20%-%g;

print $string;

View full thread Stringmanipulation