Thread Bestimmte Anzahl von Zeichen mit Regexp filtern (38 answers)
Opened by bloonix at 2006-01-12 14:05

bloonix
 2006-01-12 14:05
#61797 #61797
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl -w
use strict;

my $string1 = "dies\nist\nein\ntest";

if (length($string1) > 8) {
$string1 =~ s/(.{8})(.*)/$1/;
print "zuviel: $2\n";
}

my $string2 = "dies ist ein test";

if (length($string2) > 8) {
$string2 =~ s/(.{8})(.*)/$1/;
print "zuviel: $2\n";
}


Hi, hat jemand eine Ahnung, weshalb $2 im ersten Beispiel leer
ist? Was mag regexp nicht an den Newlines?
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Bestimmte Anzahl von Zeichen mit Regexp filtern