diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-24 23:31:42 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-24 23:31:42 (GMT) |
commit | ef7d2e991dce0522cc493243c5bd0d91df5fc06a (patch) | |
tree | 22e615f8fef8ddbf0c194e78db3f38a4d60601e8 /doc/binary.n | |
parent | 8357e1bbb6ca9e656801de05df415698640e17bb (diff) | |
download | tcl-ef7d2e991dce0522cc493243c5bd0d91df5fc06a.zip tcl-ef7d2e991dce0522cc493243c5bd0d91df5fc06a.tar.gz tcl-ef7d2e991dce0522cc493243c5bd0d91df5fc06a.tar.bz2 |
Added examples
Diffstat (limited to 'doc/binary.n')
-rw-r--r-- | doc/binary.n | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/doc/binary.n b/doc/binary.n index 0a863c1..98775e0 100644 --- a/doc/binary.n +++ b/doc/binary.n @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: binary.n,v 1.17 2004/05/13 10:12:56 dkf Exp $ +'\" RCS: @(#) $Id: binary.n,v 1.18 2004/05/24 23:31:42 dkf Exp $ '\" .so man.macros .TH binary n 8.0 Tcl "Tcl Built-In Commands" @@ -739,6 +739,28 @@ IEEE floating point representations. This is very common, but not universal. To transfer floating-point numbers portably between all architectures, use their textual representation (as produced by \fBformat\fR) instead. +.SH EXAMPLES +This is a procedure write a Tcl string to a binary-encoded channel as +UTF-8 data preceded by a length word: +.CS +proc writeString {channel string} { + set data [encoding convertto utf-8 $string] + puts -nonewline [binary format Ia* \e + [string length $data] $data] +} +.CE + +This procedure reads a string from a channel that was written by the +previously presented \fBwriteString\fR procedure: +.CS +proc readString {channel} { + if {![binary scan [read $channel 4] I length]} { + error "missing length" + } + set data [read $channel $length] + return [encoding convertfrom utf-8 $data] +} +.CE .SH "SEE ALSO" format(n), scan(n), tclvars(n) |