diff options
author | Burdette Lamar <[email protected]> | 2022-02-27 06:44:58 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-27 06:44:58 -0600 |
commit | 289a4cf6728c6b29cf59cc9e04e6d2d7302f896b (patch) | |
tree | 75d8ef69c802caf769116c9ce9649f81caacbaa2 | |
parent | 1e4ee10f124dc69cae45ee15d1f3c3f9dcdcb31c (diff) |
[DOC] Extend intro/defn of 'transcoding' (#5602)
* Extend intro/defn of 'transcoding'
Notes
Notes:
Merged-By: BurdetteLamar <[email protected]>
-rw-r--r-- | doc/encoding.rdoc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/encoding.rdoc b/doc/encoding.rdoc index 490066b5df..fcbbf3afa5 100644 --- a/doc/encoding.rdoc +++ b/doc/encoding.rdoc @@ -274,8 +274,14 @@ followed by a colon, space and the Encoding name or alias: === Transcoding -_Transcoding_ is the process of revising the content of a string or stream -by changing its encoding. +_Transcoding_ is the process of changing a sequence of characters +from one encoding to another. + +As far as possible, the characters remain the same, +but the bytes that represent them may change. + +The handling for characters that cannot be represented in the destination encoding +may be specified by @Encoding+Options. ==== Transcoding a \String |