SJIS, EUC-JP, JISに変換できないときに数値文字参照に変換する#23
Merged
polygonplanet merged 3 commits intopolygonplanet:masterfrom Aug 1, 2021
Merged
SJIS, EUC-JP, JISに変換できないときに数値文字参照に変換する#23polygonplanet merged 3 commits intopolygonplanet:masterfrom
polygonplanet merged 3 commits intopolygonplanet:masterfrom
Conversation
Owner
|
ありがとうございます! |
|
@polygonplanet 本 PR の変更ですが、beta や alpha のリリースでも良いので、npm 経由でインストールできるよう、publish いただくことって可能でしょうか...? |
Owner
|
@p-chan @tohutohu v2.0.0 でHTMLエンティティ(数値文字参照)に置き換えるオプションを追加しました。 const unicodeArray = Encoding.stringToCode('寿司🍣ビール🍺');
Encoding.convert(unicodeArray, {
to: 'SJIS',
from: 'UNICODE',
fallback: 'html-entity'
});
console.log(sjisArray); // '寿司🍣ビール🍺' の数値配列に変換されますのように指定できます。( READMEにも追記しています ) |
|
v2.0 ありがとうございました〜:pray: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
現在の仕様では、Shift_JIS・EUC-JP・JISに変換できない文字は
?に変換されますが、オプションとして数値文字参照に変換できるようにします。数値文字参照について:https://e-words.jp/w/%E6%96%87%E5%AD%97%E5%8F%82%E7%85%A7.html
例えば
🍣寿司ビール🍺(UNICODE) が?寿司ビール?(Shift_JIS) に変換されていたものが🍣寿司ビール🍺(Shift_JIS) に変換できるようになります。