encoded-word と linear-white-space

encoded-word と linear-space-white の関係を示す例を紹介する。主に RFC 2047 に示されている例である。

コメントのデリミタである"("と")"との間には linear-space-white が必要ないことを示す例
encoded form                                displayed as
(=?ISO-8859-1?Q?a?=)                        (a)
encoded-word と ctext との間には linear-space-white が必要な例
encoded form                                displayed as
(=?ISO-8859-1?Q?a?= b)                      (a b)
(a =?ISO-8859-1?Q?b?=)                      (a b)
(a                                          (a b)
 =?ISO-8859-1?Q?b?=)
(=?ISO-8859-1?Q?a?=                         (a b)
 b)
encoded-word 間の linear-space-white が表示の目的で無視される例
encoded form                                displayed as
(=?ISO-8859-1?Q?a?= =?ISO-8859-1?Q?b?=)     (ab)
(=?ISO-8859-1?Q?a?=  =?ISO-8859-1?Q?b?=)    (ab)
(=?ISO-8859-1?Q?a?=                         (ab)
    =?ISO-8859-1?Q?b?=)
符号化される文字列の中にスペースを表示するためにスペースを encoded-word として符号化する例
encoded form                                displayed as
(=?ISO-8859-1?Q?a_b?=)                      (a b)
二つの符号化される文字列の間にスペースを表示ために encoded-word の一つにスペースを符号化する例
encoded form                                displayed as
(=?ISO-8859-1?Q?a?= =?ISO-8859-2?Q?_b?=)    (a b)