Thread Line encoding
(13 answers)
Opened by Graf Herschel at 2015-02-16 15:15
Vielen Dank für deine Unterstützung
String::Escape ist das passende module Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 use String::Escape qw(unbackslash); if(open(my $fh,"<","template_file")) { while(<$fh>) { next if(/^$/ || /^#/); chomp $_; $bu=unbackslash($_); print("$bu\n"); } close($fh); } Zu meiner C Behauptung von weiter unten. Code: (dl
)
1 tmpl=(char*)malloc(512); Nocheinmal danke und einen schönen Gruß Last edited: 2015-02-16 20:25:53 +0100 (CET) |