1PerlIO::via::QuotedPrinUts(e3r)Contributed Perl DocumentPaetriloInO::via::QuotedPrint(3)
2
3
4
6 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
7
9 use PerlIO::via::QuotedPrint;
10
11 open( my $in, '<:via(QuotedPrint)', 'file.qp' )
12 or die "Can't open file.qp for reading: $!\n";
13
14 open( my $out, '>:via(QuotedPrint)', 'file.qp' )
15 or die "Can't open file.qp for writing: $!\n";
16
18 This documentation describes version 0.08.
19
21 This module implements a PerlIO layer that works on files encoded in
22 the quoted-printable format. It will decode from quoted-printable
23 while reading from a handle, and it will encode as quoted-printable
24 while writing to a handle.
25
27 MIME::QuotedPrint (any)
28
30 PerlIO::via, MIME::QuotedPrint, PerlIO::via::Base64, PerlIO::via::MD5,
31 PerlIO::via::StripHTML, PerlIO::via::Rotate.
32
34 Based on example that was initially added to MIME::QuotedPrint.pm for
35 the 5.8.0 distribution of Perl.
36
38 Copyright (c) 2002, 2003, 2004, 2012 Elizabeth Mattijsen. All rights
39 reserved. This library is free software; you can redistribute it
40 and/or modify it under the same terms as Perl itself.
41
42
43
44perl v5.28.1 2015-05-17 PerlIO::via::QuotedPrint(3)