Thread Quoten von "
(12 answers)
Opened by Jiep1963 at 2011-11-09 20:19
Meinst du sowas hier?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 #!perl use strict; use warnings; my $text = qq~"bla blubb " <invalid html="abc>~; $text =~ s/"/\\"/g; print $text; Gibts auch, um ein bereits mit Fluchtzeichen versehenes Anführungszeichen zu überspringen: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 #!perl use strict; use warnings; my $text = q~"bla blubb \" <invalid html="abc>~; $text =~ s/(<=\\)"/\\"/g; print $text; Last edited: 2011-11-09 21:50:46 +0100 (CET) http://www.intergastro-service.de (mein erstes CMS :) )
|