Sujet : Re: perl test
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : misc.test comp.lang.miscDate : 06. Sep 2024, 04:14:33
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vbdoi9$m19l$1@dont-email.me>
References : 1 2 3
User-Agent : Pan/0.160 (Toresk; )
On Sat, 31 Aug 2024 12:33:39 +0000, Retro Guy wrote:
I figured out my Perl issue. =~ s/([\"])/\$1/g; does the trick.
If that Perl code does what I think it does, the following Python
equivalent is simpler:
«str-expr».replace('"', '""')