Thread "heraus schneiden" mit Split (10 answers)
Opened by KarlaCluft at 2012-12-15 13:56

Gast wer
 2012-12-16 10:11
#164246 #164246
Warum kein lookahead und lookbehind:
Code (perl): (dl )
1
2
3
4
$text = "Ich möchte DIESE STELLE herausbekommen";

my ($ergebnis)= ($text =~ m/(?<=Ich möchte )(.+)(?= herausbekommen)/);
print "$ergebnis\n";

Last edited: 2012-12-16 10:40:51 +0100 (CET)

View full thread "heraus schneiden" mit Split