-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
335 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { dictionary } from './dictionary' | ||
|
||
type PatternMap = { [key: string]: string } | ||
const patternMap = dictionary.reduce((acc: PatternMap, dictionary) => { | ||
const pattern = `(${dictionary.src}|${dictionary.dst})` | ||
// { 亞: '(亞|亜)', 亜: '(亞|亜)', 圍: '(圍|囲)', 囲: '(圍|囲)', ...} | ||
return { ...acc, [dictionary.src]: pattern, [dictionary.dst]: pattern } | ||
}, {}) | ||
|
||
const regexp = new RegExp( | ||
Array.from(new Set(Object.values(patternMap))).join('|'), | ||
'g', | ||
) | ||
|
||
export const convert = (regexText: string) => | ||
regexText.replace(regexp, (match) => patternMap[match]) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { jisDai2Dictionary } from './jisDai2' | ||
|
||
export type Dictionary = { src: string; dst: string } | ||
|
||
export const dictionary = [ | ||
jisDai2Dictionary, | ||
// Add more dictionary here | ||
// exmapleDictionary, | ||
].flat() |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,294 @@ | ||
import { Dictionary } from './dictionary' | ||
|
||
// JIS 第2水準 => 第1水準 及び 旧字体 => 新字体 | ||
export const jisDai2Dictionary: Dictionary[] = [ | ||
{ src: '亞', dst: '亜' }, | ||
{ src: '圍', dst: '囲' }, | ||
{ src: '壹', dst: '壱' }, | ||
{ src: '榮', dst: '栄' }, | ||
{ src: '驛', dst: '駅' }, | ||
{ src: '應', dst: '応' }, | ||
{ src: '櫻', dst: '桜' }, | ||
{ src: '假', dst: '仮' }, | ||
{ src: '會', dst: '会' }, | ||
{ src: '懷', dst: '懐' }, | ||
{ src: '覺', dst: '覚' }, | ||
{ src: '樂', dst: '楽' }, | ||
{ src: '陷', dst: '陥' }, | ||
{ src: '歡', dst: '歓' }, | ||
{ src: '氣', dst: '気' }, | ||
{ src: '戲', dst: '戯' }, | ||
{ src: '據', dst: '拠' }, | ||
{ src: '挾', dst: '挟' }, | ||
{ src: '區', dst: '区' }, | ||
{ src: '徑', dst: '径' }, | ||
{ src: '溪', dst: '渓' }, | ||
{ src: '輕', dst: '軽' }, | ||
{ src: '藝', dst: '芸' }, | ||
{ src: '儉', dst: '倹' }, | ||
{ src: '圈', dst: '圏' }, | ||
{ src: '權', dst: '権' }, | ||
{ src: '嚴', dst: '厳' }, | ||
{ src: '恆', dst: '恒' }, | ||
{ src: '國', dst: '国' }, | ||
{ src: '齋', dst: '斎' }, | ||
{ src: '雜', dst: '雑' }, | ||
{ src: '蠶', dst: '蚕' }, | ||
{ src: '殘', dst: '残' }, | ||
{ src: '兒', dst: '児' }, | ||
{ src: '實', dst: '実' }, | ||
{ src: '釋', dst: '釈' }, | ||
{ src: '從', dst: '従' }, | ||
{ src: '縱', dst: '縦' }, | ||
{ src: '敍', dst: '叙' }, | ||
{ src: '燒', dst: '焼' }, | ||
{ src: '條', dst: '条' }, | ||
{ src: '剩', dst: '剰' }, | ||
{ src: '壤', dst: '壌' }, | ||
{ src: '釀', dst: '醸' }, | ||
{ src: '眞', dst: '真' }, | ||
{ src: '盡', dst: '尽' }, | ||
{ src: '醉', dst: '酔' }, | ||
{ src: '髓', dst: '髄' }, | ||
{ src: '聲', dst: '声' }, | ||
{ src: '竊', dst: '窃' }, | ||
{ src: '淺', dst: '浅' }, | ||
{ src: '錢', dst: '銭' }, | ||
{ src: '禪', dst: '禅' }, | ||
{ src: '爭', dst: '争' }, | ||
{ src: '插', dst: '挿' }, | ||
{ src: '騷', dst: '騒' }, | ||
{ src: '屬', dst: '属' }, | ||
{ src: '對', dst: '対' }, | ||
{ src: '滯', dst: '滞' }, | ||
{ src: '擇', dst: '択' }, | ||
{ src: '單', dst: '単' }, | ||
{ src: '斷', dst: '断' }, | ||
{ src: '癡', dst: '痴' }, | ||
{ src: '鑄', dst: '鋳' }, | ||
{ src: '敕', dst: '勅' }, | ||
{ src: '鐵', dst: '鉄' }, | ||
{ src: '傳', dst: '伝' }, | ||
{ src: '黨', dst: '党' }, | ||
{ src: '鬪', dst: '闘' }, | ||
{ src: '屆', dst: '届' }, | ||
{ src: '腦', dst: '脳' }, | ||
{ src: '廢', dst: '廃' }, | ||
{ src: '發', dst: '発' }, | ||
{ src: '蠻', dst: '蛮' }, | ||
{ src: '拂', dst: '払' }, | ||
{ src: '邊', dst: '辺' }, | ||
{ src: '瓣', dst: '弁' }, | ||
{ src: '寶', dst: '宝' }, | ||
{ src: '沒', dst: '没' }, | ||
{ src: '滿', dst: '満' }, | ||
{ src: '藥', dst: '薬' }, | ||
{ src: '餘', dst: '余' }, | ||
{ src: '樣', dst: '様' }, | ||
{ src: '亂', dst: '乱' }, | ||
{ src: '兩', dst: '両' }, | ||
{ src: '禮', dst: '礼' }, | ||
{ src: '靈', dst: '霊' }, | ||
{ src: '爐', dst: '炉' }, | ||
{ src: '灣', dst: '湾' }, | ||
{ src: '惡', dst: '悪' }, | ||
{ src: '醫', dst: '医' }, | ||
{ src: '飮', dst: '飲' }, | ||
{ src: '營', dst: '営' }, | ||
{ src: '圓', dst: '円' }, | ||
{ src: '歐', dst: '欧' }, | ||
{ src: '奧', dst: '奥' }, | ||
{ src: '價', dst: '価' }, | ||
{ src: '繪', dst: '絵' }, | ||
{ src: '擴', dst: '拡' }, | ||
{ src: '學', dst: '学' }, | ||
{ src: '罐', dst: '缶' }, | ||
{ src: '勸', dst: '勧' }, | ||
{ src: '觀', dst: '観' }, | ||
{ src: '歸', dst: '帰' }, | ||
{ src: '犧', dst: '犠' }, | ||
{ src: '擧', dst: '挙' }, | ||
{ src: '狹', dst: '狭' }, | ||
{ src: '驅', dst: '駆' }, | ||
{ src: '莖', dst: '茎' }, | ||
{ src: '經', dst: '経' }, | ||
{ src: '繼', dst: '継' }, | ||
{ src: '缺', dst: '欠' }, | ||
{ src: '劍', dst: '剣' }, | ||
{ src: '檢', dst: '検' }, | ||
{ src: '顯', dst: '顕' }, | ||
{ src: '廣', dst: '広' }, | ||
{ src: '鑛', dst: '鉱' }, | ||
{ src: '碎', dst: '砕' }, | ||
{ src: '劑', dst: '剤' }, | ||
{ src: '參', dst: '参' }, | ||
{ src: '慘', dst: '惨' }, | ||
{ src: '絲', dst: '糸' }, | ||
{ src: '辭', dst: '辞' }, | ||
{ src: '舍', dst: '舎' }, | ||
{ src: '壽', dst: '寿' }, | ||
{ src: '澁', dst: '渋' }, | ||
{ src: '肅', dst: '粛' }, | ||
{ src: '將', dst: '将' }, | ||
{ src: '證', dst: '証' }, | ||
{ src: '乘', dst: '乗' }, | ||
{ src: '疊', dst: '畳' }, | ||
{ src: '孃', dst: '嬢' }, | ||
{ src: '觸', dst: '触' }, | ||
{ src: '寢', dst: '寝' }, | ||
{ src: '圖', dst: '図' }, | ||
{ src: '穗', dst: '穂' }, | ||
{ src: '樞', dst: '枢' }, | ||
{ src: '齊', dst: '斉' }, | ||
{ src: '攝', dst: '摂' }, | ||
{ src: '戰', dst: '戦' }, | ||
{ src: '潛', dst: '潜' }, | ||
{ src: '雙', dst: '双' }, | ||
{ src: '莊', dst: '荘' }, | ||
{ src: '裝', dst: '装' }, | ||
{ src: '藏', dst: '蔵' }, | ||
{ src: '續', dst: '続' }, | ||
{ src: '體', dst: '体' }, | ||
{ src: '臺', dst: '台' }, | ||
{ src: '澤', dst: '沢' }, | ||
{ src: '膽', dst: '胆' }, | ||
{ src: '彈', dst: '弾' }, | ||
{ src: '蟲', dst: '虫' }, | ||
{ src: '廳', dst: '庁' }, | ||
{ src: '鎭', dst: '鎮' }, | ||
{ src: '點', dst: '点' }, | ||
{ src: '燈', dst: '灯' }, | ||
{ src: '盜', dst: '盗' }, | ||
{ src: '獨', dst: '独' }, | ||
{ src: '貳', dst: '弐' }, | ||
{ src: '霸', dst: '覇' }, | ||
{ src: '賣', dst: '売' }, | ||
{ src: '髮', dst: '髪' }, | ||
{ src: '祕', dst: '秘' }, | ||
{ src: '佛', dst: '仏' }, | ||
{ src: '變', dst: '変' }, | ||
{ src: '辯', dst: '弁' }, | ||
{ src: '豐', dst: '豊' }, | ||
{ src: '飜', dst: '翻' }, | ||
{ src: '默', dst: '黙' }, | ||
{ src: '與', dst: '与' }, | ||
{ src: '譽', dst: '誉' }, | ||
{ src: '謠', dst: '謡' }, | ||
{ src: '覽', dst: '覧' }, | ||
{ src: '獵', dst: '猟' }, | ||
{ src: '勵', dst: '励' }, | ||
{ src: '齡', dst: '齢' }, | ||
{ src: '勞', dst: '労' }, | ||
{ src: '壓', dst: '圧' }, | ||
{ src: '爲', dst: '為' }, | ||
{ src: '隱', dst: '隠' }, | ||
{ src: '衞', dst: '衛' }, | ||
{ src: '鹽', dst: '塩' }, | ||
{ src: '毆', dst: '殴' }, | ||
{ src: '穩', dst: '穏' }, | ||
{ src: '畫', dst: '画' }, | ||
{ src: '壞', dst: '壊' }, | ||
{ src: '殼', dst: '殻' }, | ||
{ src: '嶽', dst: '岳' }, | ||
{ src: '卷', dst: '巻' }, | ||
{ src: '關', dst: '関' }, | ||
{ src: '顏', dst: '顔' }, | ||
{ src: '僞', dst: '偽' }, | ||
{ src: '舊', dst: '旧' }, | ||
{ src: '峽', dst: '峡' }, | ||
{ src: '曉', dst: '暁' }, | ||
{ src: '勳', dst: '勲' }, | ||
{ src: '惠', dst: '恵' }, | ||
{ src: '螢', dst: '蛍' }, | ||
{ src: '鷄', dst: '鶏' }, | ||
{ src: '縣', dst: '県' }, | ||
{ src: '險', dst: '険' }, | ||
{ src: '獻', dst: '献' }, | ||
{ src: '驗', dst: '験' }, | ||
{ src: '效', dst: '効' }, | ||
{ src: '號', dst: '号' }, | ||
{ src: '濟', dst: '済' }, | ||
{ src: '册', dst: '冊' }, | ||
{ src: '棧', dst: '桟' }, | ||
{ src: '贊', dst: '賛' }, | ||
{ src: '齒', dst: '歯' }, | ||
{ src: '濕', dst: '湿' }, | ||
{ src: '寫', dst: '写' }, | ||
{ src: '收', dst: '収' }, | ||
{ src: '獸', dst: '獣' }, | ||
{ src: '處', dst: '処' }, | ||
{ src: '稱', dst: '称' }, | ||
{ src: '奬', dst: '奨' }, | ||
{ src: '淨', dst: '浄' }, | ||
{ src: '繩', dst: '縄' }, | ||
{ src: '讓', dst: '譲' }, | ||
{ src: '囑', dst: '嘱' }, | ||
{ src: '愼', dst: '慎' }, | ||
{ src: '粹', dst: '粋' }, | ||
{ src: '隨', dst: '随' }, | ||
{ src: '數', dst: '数' }, | ||
{ src: '靜', dst: '静' }, | ||
{ src: '專', dst: '専' }, | ||
{ src: '踐', dst: '践' }, | ||
{ src: '纖', dst: '繊' }, | ||
{ src: '壯', dst: '壮' }, | ||
{ src: '搜', dst: '捜' }, | ||
{ src: '總', dst: '総' }, | ||
{ src: '臟', dst: '臓' }, | ||
{ src: '墮', dst: '堕' }, | ||
{ src: '帶', dst: '帯' }, | ||
{ src: '瀧', dst: '滝' }, | ||
{ src: '擔', dst: '担' }, | ||
{ src: '團', dst: '団' }, | ||
{ src: '遲', dst: '遅' }, | ||
{ src: '晝', dst: '昼' }, | ||
{ src: '聽', dst: '聴' }, | ||
{ src: '遞', dst: '逓' }, | ||
{ src: '轉', dst: '転' }, | ||
{ src: '當', dst: '当' }, | ||
{ src: '稻', dst: '稲' }, | ||
{ src: '讀', dst: '読' }, | ||
{ src: '惱', dst: '悩' }, | ||
{ src: '拜', dst: '拝' }, | ||
{ src: '麥', dst: '麦' }, | ||
{ src: '拔', dst: '抜' }, | ||
{ src: '濱', dst: '浜' }, | ||
{ src: '竝', dst: '並' }, | ||
{ src: '辨', dst: '弁' }, | ||
{ src: '舖', dst: '舗' }, | ||
{ src: '襃', dst: '褒' }, | ||
{ src: '萬', dst: '万' }, | ||
{ src: '譯', dst: '訳' }, | ||
{ src: '豫', dst: '予' }, | ||
{ src: '搖', dst: '揺' }, | ||
{ src: '來', dst: '来' }, | ||
{ src: '龍', dst: '竜' }, | ||
{ src: '壘', dst: '塁' }, | ||
{ src: '隸', dst: '隷' }, | ||
{ src: '戀', dst: '恋' }, | ||
{ src: '樓', dst: '楼' }, | ||
{ src: '鰺', dst: '鯵' }, | ||
{ src: '鶯', dst: '鴬' }, | ||
{ src: '蠣', dst: '蛎' }, | ||
{ src: '攪', dst: '撹' }, | ||
{ src: '竈', dst: '竃' }, | ||
{ src: '灌', dst: '潅' }, | ||
{ src: '諫', dst: '諌' }, | ||
{ src: '頸', dst: '頚' }, | ||
{ src: '礦', dst: '砿' }, | ||
{ src: '蘂', dst: '蕊' }, | ||
{ src: '靱', dst: '靭' }, | ||
{ src: '賤', dst: '賎' }, | ||
{ src: '壺', dst: '壷' }, | ||
{ src: '礪', dst: '砺' }, | ||
{ src: '檮', dst: '梼' }, | ||
{ src: '濤', dst: '涛' }, | ||
{ src: '邇', dst: '迩' }, | ||
{ src: '蠅', dst: '蝿' }, | ||
{ src: '檜', dst: '桧' }, | ||
{ src: '儘', dst: '侭' }, | ||
{ src: '藪', dst: '薮' }, | ||
{ src: '籠', dst: '篭' }, | ||
{ src: '彌', dst: '弥' }, | ||
{ src: '麩', dst: '麸' }, | ||
] |
This file contains 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