• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:Unicode規定の Zs (space separator) とは)

Understanding Zs (space separator) in Unicode

このQ&Aのポイント
  • In JavaScript, the Zs (space separator) is a Unicode character defined in the WhiteSpace category.
  • ECMA262 Edition 5 introduced the String.prototype.trim() method, which removes leading and trailing white space, including Zs characters.
  • To find the definition of Zs (space separator) in Unicode, you can refer to the official Unicode Consortium website.

質問者が選んだベストアンサー

  • ベストアンサー
  • Tacosan
  • ベストアンサー率23% (3656/15482)
回答No.1

カテゴリ Zs は早いはなしが「空白文字」のようですね (http://www.unicode.org/versions/Unicode5.2.0/ch06.pdf ). どの文字が Zs であるかはプロパティリスト (http://www.unicode.org/Public/5.2.0/ucd/PropList.txt ) を探せば書いてあったりします.

参考URL:
http://www.unicode.org/Public/5.2.0/ucd/PropList.txt
think49
質問者

お礼

ありがとうございます。 英語への苦手意識がまだ抜けていないようで、とても助かりました。 次のように理解しました。 ---------- // Unicode 5.2.0 Property-List ( http://www.unicode.org/Public/5.2.0/ucd/PropList.txt ) var White_Space = {    Cc: '\u0009-\u000D\u0085',                   // Other, control    Zs: '\u0020\u00A0\u1680\u180E\u2000-\u200A\u202F\u205F\u3000', // Separator, space    Zl: '\u2028',                          // Separator, line    Zp: '\u2029'                          // Separator, paragraph   }; ---------- * アクセス ** ch04.pdf へのアクセス ( http://www.unicode.org/versions/Unicode5.2.0/ch04.pdf ) [The Unicode Standard] -> [Latest Version] -> [4 Character Properties] ** ch06.pdf へのアクセス ( http://www.unicode.org/versions/Unicode5.2.0/ch06.pdf ) [The Unicode Standard] -> [Latest Version] -> [6 Writing Systems and Punctuation] ** PropList.txt へのアクセス ( http://www.unicode.org/Public/5.2.0/ucd/PropList.txt ) [The Unicode Standard] -> [Unicode Character Database] -> http://www.unicode.org/Public/5.2.0/ -> ucd/ -> PropList.txt * 参考資料 ------ 4.5 General Category―Normative ... (中略) ... Table 4-9. General Category +-----------------------------+ | Zs = Separator, space    | | Zl = Separator, line    | | Zp = Separator, paragraph  | +-----------------------------+ http://www.unicode.org/versions/Unicode5.2.0/ch04.pdf ------ ------ 6.2 General Punctuation ... (中略) ... Table 6-2. Unicode Space Characters +--------+------------------+ | Code  | Name       | +--------+------------------+ | U+0020 | SPACE      | | U+00A0 | No-BREAK SPACE  | | U+1680 | OGHAM SPACE MARK | | ...  | ...       | +--------+------------------+ http://www.unicode.org/versions/Unicode5.2.0/ch06.pdf ------

関連するQ&A