秀丸マクロ集|目次
秀丸マクロ集を一括ダウンロード |
タイトルをクリックすると該当箇所にジャンプします。 | |
ファイル整形 | |
不適切表記修正 | |
アルファベット、数字の置換 | |
欧文の半角処理 | |
漢字を開く | |
複合動詞の修正 | |
送りがなの統一 | |
世紀、年月日にトンボの十を使う |
ファイル整形
//■無駄なスペースとタブの削除 //行頭・行末の無駄なスペースとタブの削除 replaceallfast "^[ \t]+"," ",inselect,regular; replaceallfast "[ \t]+$","",inselect,regular; //和文中の無駄なスペースとタブの削除 replaceallfast "\\f[、-黑]\\f[ \t]+\\f[、-黑]\\f","\\1\\3",inselect,regular; //カッコ類で始まるときの行頭のスペースを削除 replaceallfast "^ \\f[「『〈《([〔【{“‘\n]\\f","\\1",inselect,regular; //■行頭1字下げ処理 replaceallfast "\n\\f[^ 「『〈《([〔【{“‘\n]\\f","\n \\1",inselect,regular; //■句読点を,.から、。に戻す replaceallfast "\\f[ -黑]\\f,","\\1、",inselect,regular; replaceallfast "\\f[ -黑]\\f\\.","\\1。",inselect,regular; //■全角マイナス記号を長音記号に replaceallfast "\\f[ -黑]\\f-","\\1ー★",inselect,regular; //■和文のなかの記号類は全角に replaceallfast "\\f[□-黑]\\f\\?\\f[□-黑\n]\\f","\\1?\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f!\\f[□-黑\n]\\f","\\1!\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f\\(\\f[□-黑]\\f","\\1(\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f\\)\\f[□-黑\n]\\f","\\1)\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f{\\f[□-黑]\\f","\\1{\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f}\\f[□-黑\n]\\f","\\1}\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f\\[\\f[□-黑]\\f","\\1[\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f\\]\\f[□-黑\n]\\f","\\1]\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f<\\f[□-黑]\\f","\\1〈\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f>\\f[□-黑\n]\\f","\\1〉\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f「\\f[□-黑]\\f","\\1「\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f」\\f[□-黑\n]\\f","\\1」\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f\\+\\f[□-黑\n]\\f","\\1+\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f-\\f[□-黑\n]\\f","\\1-\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f=\\f[□-黑\n]\\f","\\1=\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f#\\f[□-黑\n]\\f","\\1#\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f\\$\\f[□-黑\n]\\f","\\1$\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f%\\f[□-黑\n]\\f","\\1%\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f&\\f[□-黑\n]\\f","\\1&\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f\\*\\f[□-黑\n]\\f","\\1*\\3",inselect,regular; replaceallfast "\\f[□-黑\n]\\f@\\f[□-黑\n]\\f","\\1@\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f。\\f[□-黑\n]\\f","\\1。\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f、\\f[□-黑]\\f","\\1、\\3",inselect,regular; replaceallfast "\\f[□-黑]\\fー\\f[□-黑]\\f","\\1ー\\3",inselect,regular; replaceallfast "\\f[□-黑]\\f・\\f[□-黑]\\f","\\1・\\3",inselect,regular //■強制改行の削除 //文中の強制改行を削除 replaceallfast "\\f.\\f\n\\f[^ 「『〈《([〔【{“‘\n]\\f","\\1\\3",inselect,regular; | |
▲目次へ |
不適切表記修正
//■特殊表記 //上記、下記→前記★、後記★(縦組の場合) //上掲→前掲★(縦組の場合) //上述→前述★(縦組の場合) replaceallfast "上\\f[記掲述]\\f","前★\\1",inselect,regular; replaceallfast "下記","後★記",inselect,regular; //長編など→長篇など replaceallfast "\\f[長短全前後続詩]\\f編","\\1篇★",inselect,regular; //■よくある間違いを修正する //づつ→ずつ★ replaceallfast "づつ","ずつ★",inselect,regular; //年齢を歳でなく才で表記する間違い replaceallfast "\\f[01234567890123456789〇一二三四五六七八九十何]\\f才","\\1歳★",inselect,regular; //~にしかすぎない、~だけにすぎない→にすぎない replaceallfast "だけに[過す]ぎ\\f[なず]\\f","にすぎ\\1",inselect,regular; replaceallfast "にしか[過す]ぎ\\f[なず]\\f","にすぎ\\1",inselect,regular; //として見なす(見る)→と見なす(見る) replaceallfast "として\\f[見み]\\f[たてならるれよ]\\f","と\\1\\2★",inselect,regular; //コミニュケーション→コミュニケーション replaceallfast "コミニュケーション","コミュニケーション",inselect,regular; //シュミレーション(シュミラークル)→シミュレーション(シミュラークル) replaceallfast "シュミレーション","シミュレーション",inselect,regular; replaceallfast "シュミラークル","シミュラークル",inselect,regular; //漢字変換ミスを確認する replaceallfast "\\f[以意]\\f外","\\1★外",inselect,regular; replaceallfast "終\\f[止始]\\f","終\\1★",inselect,regular; replaceallfast "対\\f[象照称]\\f","対\\1★",inselect,regular; replaceallfast "内\\f[臓蔵]\\f","内\\1★",inselect,regular; replaceallfast "符\\f[合号]\\f","符\\1★",inselect,regular; replaceallfast "\\f[文分]\\f化","\\1★化",inselect,regular; replaceallfast "\\f[開解]\\f放","\\1★放",inselect,regular; replaceallfast "自\\f[立律]\\f","自\\1★",inselect,regular; replaceallfast "\\f[探追]\\f[求究及]\\f","\\1\\2★",inselect,regular; replaceallfast "\\f[初始]\\fめて","\\1★めて",inselect,regular; replaceallfast "入り口","入★口",inselect,regular; //好ましくない表記 replaceallfast "\\f[或あ]\\fる意味","\\1る意味で★",inselect,regular; //■固有名詞の略字を正字に //未来社→未來社 replaceallfast "未来社\\f[^会]\\f","未來社\\1",inselect,regular; //文芸春秋→文藝春秋 replaceallfast "文芸春秋","文藝春秋",inselect,regular; //丸山真男→丸山眞男 replaceallfast "丸山真男","丸山眞男",inselect,regular; //蓮実重彦→蓮實重彦 replaceallfast "蓮実重彦","蓮實重彦",inselect,regular; //柳田国男→柳田國男 replaceallfast "柳田国男","柳田國男",inselect,regular; //■?!のあとに文字がつづく場合は全角スペース挿入 replaceallfast "\\f[?!]\\f[^\n「」『』〈)《》(〉[]〔〕【】{}“”‘’]\\f","\\1 \\2",inselect,regular //■丸付き数字の修正 replaceallfast "①","○1",inselect,regular; replaceallfast "②","○2",inselect,regular; replaceallfast "③","○3",inselect,regular; replaceallfast "④","○4",inselect,regular; replaceallfast "⑤","○5",inselect,regular; replaceallfast "⑥","○6",inselect,regular; replaceallfast "⑦","○7",inselect,regular; replaceallfast "⑧","○8",inselect,regular; replaceallfast "⑨","○9",inselect,regular; replaceallfast "⑩","○10",inselect,regular; replaceallfast "⑪","○11",inselect,regular; replaceallfast "⑫","○12",inselect,regular; replaceallfast "⑬","○13",inselect,regular; replaceallfast "⑭","○14",inselect,regular; replaceallfast "⑮","○15",inselect,regular; replaceallfast "⑯","○16",inselect,regular; replaceallfast "⑰","○17",inselect,regular; replaceallfast "⑱","○18",inselect,regular; replaceallfast "⑲","○19",inselect,regular; replaceallfast "⑳","○20",inselect,regular; //■時計数字の修正 replaceallfast "Ⅰ","I",inselect,regular; replaceallfast "Ⅱ","【II】",inselect,regular; replaceallfast "Ⅲ","【III】",inselect,regular; replaceallfast "Ⅳ","【IV】",inselect,regular; replaceallfast "Ⅴ","V",inselect,regular; replaceallfast "Ⅵ","【VI】",inselect,regular; replaceallfast "Ⅶ","【VII】",inselect,regular; replaceallfast "Ⅷ","【VIII】",inselect,regular; replaceallfast "Ⅸ","【IX】",inselect,regular; replaceallfast "Ⅹ","X",inselect,regular; replaceallfast "ⅰ","i",inselect,regular; replaceallfast "ⅱ","【ii】",inselect,regular; replaceallfast "ⅲ","【iii】",inselect,regular; replaceallfast "ⅳ","【iv】",inselect,regular; replaceallfast "ⅴ","v",inselect,regular; replaceallfast "ⅵ","【vi】",inselect,regular; replaceallfast "ⅶ","【vii】",inselect,regular; replaceallfast "ⅷ","【viii】",inselect,regular; replaceallfast "ⅸ","【ix】",inselect,regular; replaceallfast "ⅹ","x",inselect,regular; //■欧文のページ表記でp. 1-2, p.1, p.2をpp, 1-2, pp. 1, 2に変える replaceallfast "p\. \*\\f[0-9]\+\\f-\\f[0-9]\+\\f","pp. \\1-\\3",inselect,regular replaceallfast "p\. \*\\f[0-9]\+\\f, \*\\f[0-9]\+\\f","pp. \\1, \\3",inselect,regular replaceallfast "p\. \*\\f[0-9]\+\\f, \*p\. \*\\f[0-9]\+\\f","pp. \\1, \\3",inselect,regular | |
▲目次へ |
アルファベット、数字の置換
//■アルファベットの全角化 //半角イニシャルを全角化する replaceallfast "A\\f[\.・・]\\f[ -黑A-Z]\\f","A・\\2",inselect,regular; replaceallfast "B\\f[\.・・]\\f[ -黑A-Z]\\f","B・\\2",inselect,regular; replaceallfast "C\\f[\.・・]\\f[ -黑A-Z]\\f","C・\\2",inselect,regular; replaceallfast "D\\f[\.・・]\\f[ -黑A-Z]\\f","D・\\2",inselect,regular; replaceallfast "E\\f[\.・・]\\f[ -黑A-Z]\\f","E・\\2",inselect,regular; replaceallfast "F\\f[\.・・]\\f[ -黑A-Z]\\f","F・\\2",inselect,regular; replaceallfast "G\\f[\.・・]\\f[ -黑A-Z]\\f","G・\\2",inselect,regular; replaceallfast "H\\f[\.・・]\\f[ -黑A-Z]\\f","H・\\2",inselect,regular; replaceallfast "I\\f[\.・・]\\f[ -黑A-Z]\\f","I・\\2",inselect,regular; replaceallfast "J\\f[\.・・]\\f[ -黑A-Z]\\f","J・\\2",inselect,regular; replaceallfast "K\\f[\.・・]\\f[ -黑A-Z]\\f","K・\\2",inselect,regular; replaceallfast "L\\f[\.・・]\\f[ -黑A-Z]\\f","L・\\2",inselect,regular; replaceallfast "M\\f[\.・・]\\f[ -黑A-Z]\\f","M・\\2",inselect,regular; replaceallfast "N\\f[\.・・]\\f[ -黑A-Z]\\f","N・\\2",inselect,regular; replaceallfast "O\\f[\.・・]\\f[ -黑A-Z]\\f","O・\\2",inselect,regular; replaceallfast "P\\f[\.・・]\\f[ -黑A-Z]\\f","P・\\2",inselect,regular; replaceallfast "Q\\f[\.・・]\\f[ -黑A-Z]\\f","Q・\\2",inselect,regular; replaceallfast "R\\f[\.・・]\\f[ -黑A-Z]\\f","R・\\2",inselect,regular; replaceallfast "S\\f[\.・・]\\f[ -黑A-Z]\\f","S・\\2",inselect,regular; replaceallfast "T\\f[\.・・]\\f[ -黑A-Z]\\f","T・\\2",inselect,regular; replaceallfast "U\\f[\.・・]\\f[ -黑A-Z]\\f","U・\\2",inselect,regular; replaceallfast "V\\f[\.・・]\\f[ -黑A-Z]\\f","V・\\2",inselect,regular; replaceallfast "W\\f[\.・・]\\f[ -黑A-Z]\\f","W・\\2",inselect,regular; replaceallfast "X\\f[\.・・]\\f[ -黑A-Z]\\f","X・\\2",inselect,regular; replaceallfast "Y\\f[\.・・]\\f[ -黑A-Z]\\f","Y・\\2",inselect,regular; replaceallfast "Z\\f[\.・・]\\f[ -黑A-Z]\\f","Z・\\2",inselect,regular; //和文の前後の半角の大文字英字を全角化する replaceallfast "\\f[ -黑]\\fA\\f[ -黑]\\f","\\1A\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fB\\f[ -黑]\\f","\\1B\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fC\\f[ -黑]\\f","\\1C\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fD\\f[ -黑]\\f","\\1D\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fE\\f[ -黑]\\f","\\1E\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fF\\f[ -黑]\\f","\\1F\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fG\\f[ -黑]\\f","\\1G\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fH\\f[ -黑]\\f","\\1H\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fI\\f[ -黑]\\f","\\1I\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fJ\\f[ -黑]\\f","\\1J\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fK\\f[ -黑]\\f","\\1K\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fL\\f[ -黑]\\f","\\1L\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fM\\f[ -黑]\\f","\\1M\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fN\\f[ -黑]\\f","\\1N\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fO\\f[ -黑]\\f","\\1O\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fP\\f[ -黑]\\f","\\1P\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fQ\\f[ -黑]\\f","\\1Q\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fR\\f[ -黑]\\f","\\1R\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fS\\f[ -黑]\\f","\\1S\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fT\\f[ -黑]\\f","\\1T\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fU\\f[ -黑]\\f","\\1U\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fV\\f[ -黑]\\f","\\1V\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fW\\f[ -黑]\\f","\\1W\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fX\\f[ -黑]\\f","\\1X\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fY\\f[ -黑]\\f","\\1Y\\3",inselect,regular; replaceallfast "\\f[ -黑]\\fZ\\f[ -黑]\\f","\\1Z\\3",inselect,regular; //全角大文字アルファベットにはさまれた半角大文字アルファベットを全角化する replaceallfast "\\f[A-Z]\\fA\\f[A-Z]\\f","\\1A\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fB\\f[A-Z]\\f","\\1B\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fC\\f[A-Z]\\f","\\1C\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fD\\f[A-Z]\\f","\\1D\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fE\\f[A-Z]\\f","\\1E\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fF\\f[A-Z]\\f","\\1F\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fG\\f[A-Z]\\f","\\1G\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fH\\f[A-Z]\\f","\\1H\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fI\\f[A-Z]\\f","\\1I\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fJ\\f[A-Z]\\f","\\1J\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fK\\f[A-Z]\\f","\\1K\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fL\\f[A-Z]\\f","\\1L\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fM\\f[A-Z]\\f","\\1M\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fN\\f[A-Z]\\f","\\1N\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fO\\f[A-Z]\\f","\\1O\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fP\\f[A-Z]\\f","\\1P\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fQ\\f[A-Z]\\f","\\1Q\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fR\\f[A-Z]\\f","\\1R\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fS\\f[A-Z]\\f","\\1S\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fT\\f[A-Z]\\f","\\1T\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fU\\f[A-Z]\\f","\\1U\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fV\\f[A-Z]\\f","\\1V\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fW\\f[A-Z]\\f","\\1W\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fX\\f[A-Z]\\f","\\1X\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fY\\f[A-Z]\\f","\\1Y\\3",inselect,regular; replaceallfast "\\f[A-Z]\\fZ\\f[A-Z]\\f","\\1Z\\3",inselect,regular; //■半角英数文字のなかにはさまれた全角英数文字を半角化する replaceallfast "\\f[A-Za-z0-9]\\fA\\f[A-Za-z0-9]\\f","\\1A\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fB\\f[A-Za-z0-9]\\f","\\1B\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fC\\f[A-Za-z0-9]\\f","\\1C\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fD\\f[A-Za-z0-9]\\f","\\1D\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fE\\f[A-Za-z0-9]\\f","\\1E\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fF\\f[A-Za-z0-9]\\f","\\1F\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fG\\f[A-Za-z0-9]\\f","\\1G\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fH\\f[A-Za-z0-9]\\f","\\1H\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fI\\f[A-Za-z0-9]\\f","\\1I\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fJ\\f[A-Za-z0-9]\\f","\\1J\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fK\\f[A-Za-z0-9]\\f","\\1K\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fL\\f[A-Za-z0-9]\\f","\\1L\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fM\\f[A-Za-z0-9]\\f","\\1M\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fN\\f[A-Za-z0-9]\\f","\\1N\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fO\\f[A-Za-z0-9]\\f","\\1O\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fP\\f[A-Za-z0-9]\\f","\\1P\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fQ\\f[A-Za-z0-9]\\f","\\1Q\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fR\\f[A-Za-z0-9]\\f","\\1R\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fS\\f[A-Za-z0-9]\\f","\\1S\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fT\\f[A-Za-z0-9]\\f","\\1T\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fU\\f[A-Za-z0-9]\\f","\\1U\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fV\\f[A-Za-z0-9]\\f","\\1V\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fW\\f[A-Za-z0-9]\\f","\\1W\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fX\\f[A-Za-z0-9]\\f","\\1X\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fY\\f[A-Za-z0-9]\\f","\\1Y\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fZ\\f[A-Za-z0-9]\\f","\\1Z\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fa\\f[A-Za-z0-9]\\f","\\1a\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fb\\f[A-Za-z0-9]\\f","\\1b\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fc\\f[A-Za-z0-9]\\f","\\1c\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fd\\f[A-Za-z0-9]\\f","\\1d\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fe\\f[A-Za-z0-9]\\f","\\1e\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\ff\\f[A-Za-z0-9]\\f","\\1f\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fg\\f[A-Za-z0-9]\\f","\\1g\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fh\\f[A-Za-z0-9]\\f","\\1h\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fi\\f[A-Za-z0-9]\\f","\\1i\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fj\\f[A-Za-z0-9]\\f","\\1j\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fk\\f[A-Za-z0-9]\\f","\\1k\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fl\\f[A-Za-z0-9]\\f","\\1l\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fm\\f[A-Za-z0-9]\\f","\\1m\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fn\\f[A-Za-z0-9]\\f","\\1n\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fo\\f[A-Za-z0-9]\\f","\\1o\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fp\\f[A-Za-z0-9]\\f","\\1p\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fq\\f[A-Za-z0-9]\\f","\\1q\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fr\\f[A-Za-z0-9]\\f","\\1s\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fs\\f[A-Za-z0-9]\\f","\\1t\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\ft\\f[A-Za-z0-9]\\f","\\1d\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fu\\f[A-Za-z0-9]\\f","\\1u\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fv\\f[A-Za-z0-9]\\f","\\1v\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fw\\f[A-Za-z0-9]\\f","\\1w\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fx\\f[A-Za-z0-9]\\f","\\1x\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fy\\f[A-Za-z0-9]\\f","\\1y\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\fz\\f[A-Za-z0-9]\\f","\\1z\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f0\\f[A-Za-z0-9]\\f","\\10\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f1\\f[A-Za-z0-9]\\f","\\11\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f2\\f[A-Za-z0-9]\\f","\\12\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f3\\f[A-Za-z0-9]\\f","\\13\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f4\\f[A-Za-z0-9]\\f","\\14\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f5\\f[A-Za-z0-9]\\f","\\15\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f6\\f[A-Za-z0-9]\\f","\\16\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f7\\f[A-Za-z0-9]\\f","\\17\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f8\\f[A-Za-z0-9]\\f","\\18\\3",inselect,regular replaceallfast "\\f[A-Za-z0-9]\\f9\\f[A-Za-z0-9]\\f","\\19\\3",inselect,regular //■数字の漢数字化 //和文の前後の算用数字を漢数字化する replaceallfast "\\f[ -黑]\\f[00]","\\1〇",inselect,regular; replaceallfast "\\f[ -黑]\\f[11]","\\1一",inselect,regular; replaceallfast "\\f[ -黑]\\f[22]","\\1二",inselect,regular; replaceallfast "\\f[ -黑]\\f[33]","\\1三",inselect,regular; replaceallfast "\\f[ -黑]\\f[44]","\\1四",inselect,regular; replaceallfast "\\f[ -黑]\\f[55]","\\1五",inselect,regular; replaceallfast "\\f[ -黑]\\f[66]","\\1六",inselect,regular; replaceallfast "\\f[ -黑]\\f[77]","\\1七",inselect,regular; replaceallfast "\\f[ -黑]\\f[88]","\\1八",inselect,regular; replaceallfast "\\f[ -黑]\\f[99]","\\1九",inselect,regular; replaceallfast "[00]\\f[ -黑]\\f","〇\\1",inselect,regular; replaceallfast "[11]\\f[ -黑]\\f","一\\1",inselect,regular; replaceallfast "[22]\\f[ -黑]\\f","二\\1",inselect,regular; replaceallfast "[33]\\f[ -黑]\\f","三\\1",inselect,regular; replaceallfast "[44]\\f[ -黑]\\f","四\\1",inselect,regular; replaceallfast "[55]\\f[ -黑]\\f","五\\1",inselect,regular; replaceallfast "[66]\\f[ -黑]\\f","六\\1",inselect,regular; replaceallfast "[77]\\f[ -黑]\\f","七\\1",inselect,regular; replaceallfast "[88]\\f[ -黑]\\f","八\\1",inselect,regular; replaceallfast "[99]\\f[ -黑]\\f","九\\1",inselect,regular; //置換された漢数字の前後の算用数字をさらに漢数字化する replaceallfast "\\f[ -黑\n]\\f[00]","\\1〇",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[11]","\\1一",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[22]","\\1二",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[33]","\\1三",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[44]","\\1四",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[55]","\\1五",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[66]","\\1六",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[77]","\\1七",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[88]","\\1八",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[99]","\\1九",inselect,regular; replaceallfast "[00]\\f[ -黑\n]\\f","〇\\1",inselect,regular; replaceallfast "[11]\\f[ -黑\n]\\f","一\\1",inselect,regular; replaceallfast "[22]\\f[ -黑\n]\\f","二\\1",inselect,regular; replaceallfast "[33]\\f[ -黑\n]\\f","三\\1",inselect,regular; replaceallfast "[44]\\f[ -黑\n]\\f","四\\1",inselect,regular; replaceallfast "[55]\\f[ -黑\n]\\f","五\\1",inselect,regular; replaceallfast "[66]\\f[ -黑\n]\\f","六\\1",inselect,regular; replaceallfast "[77]\\f[ -黑\n]\\f","七\\1",inselect,regular; replaceallfast "[88]\\f[ -黑\n]\\f","八\\1",inselect,regular; replaceallfast "[99]\\f[ -黑\n]\\f","九\\1",inselect,regular; //■西暦年を算用数字から漢数字化する(うしろに「年」か「~」か「─」か「)」がくるとき) //4桁目の処理 replaceallfast "\\f[11]\\f[0-90-9][0-90-9][0-90-9]\\f[年~―)]\\f","一\\2\\3",inselect,regular; replaceallfast "\\f[22]\\f[0-90-9][0-90-9][0-90-9]\\f[年~―)]\\f","二\\2\\3",inselect,regular; //3桁目の処理 replaceallfast "\\f[00]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","〇\\2\\3",inselect,regular; replaceallfast "\\f[11]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","一\\2\\3",inselect,regular; replaceallfast "\\f[22]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","二\\2\\3",inselect,regular; replaceallfast "\\f[33]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","三\\2\\3",inselect,regular; replaceallfast "\\f[44]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","四\\2\\3",inselect,regular; replaceallfast "\\f[55]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","五\\2\\3",inselect,regular; replaceallfast "\\f[66]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","六\\2\\3",inselect,regular; replaceallfast "\\f[77]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","七\\2\\3",inselect,regular; replaceallfast "\\f[88]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","八\\2\\3",inselect,regular; replaceallfast "\\f[99]\\f[0-90-9][0-90-9]\\f[年~―)]\\f","九\\2\\3",inselect,regular; //2桁目の処理 replaceallfast "\\f[00]\\f[0-90-9]\\f[年~―)]\\f","〇\\2\\3",inselect,regular; replaceallfast "\\f[11]\\f[0-90-9]\\f[年~―)]\\f","一\\2\\3",inselect,regular; replaceallfast "\\f[22]\\f[0-90-9]\\f[年~―)]\\f","二\\2\\3",inselect,regular; replaceallfast "\\f[33]\\f[0-90-9]\\f[年~―)]\\f","三\\2\\3",inselect,regular; replaceallfast "\\f[44]\\f[0-90-9]\\f[年~―)]\\f","四\\2\\3",inselect,regular; replaceallfast "\\f[55]\\f[0-90-9]\\f[年~―)]\\f","五\\2\\3",inselect,regular; replaceallfast "\\f[66]\\f[0-90-9]\\f[年~―)]\\f","六\\2\\3",inselect,regular; replaceallfast "\\f[77]\\f[0-90-9]\\f[年~―)]\\f","七\\2\\3",inselect,regular; replaceallfast "\\f[88]\\f[0-90-9]\\f[年~―)]\\f","八\\2\\3",inselect,regular; replaceallfast "\\f[99]\\f[0-90-9]\\f[年~―)]\\f","九\\2\\3",inselect,regular; //1桁目の処理 replaceallfast "\\f[00]\\f[年~―)]\\f","〇\\2",inselect,regular; replaceallfast "\\f[11]\\f[年~―)]\\f","一\\2",inselect,regular; replaceallfast "\\f[22]\\f[年~―)]\\f","二\\2",inselect,regular; replaceallfast "\\f[33]\\f[年~―)]\\f","三\\2",inselect,regular; replaceallfast "\\f[44]\\f[年~―)]\\f","四\\2",inselect,regular; replaceallfast "\\f[55]\\f[年~―)]\\f","五\\2",inselect,regular; replaceallfast "\\f[66]\\f[年~―)]\\f","六\\2",inselect,regular; replaceallfast "\\f[77]\\f[年~―)]\\f","七\\2",inselect,regular; replaceallfast "\\f[88]\\f[年~―))]\\f","八\\2",inselect,regular; replaceallfast "\\f[99]\\f[年~―)]\\f","九\\2",inselect,regular; //なお、これは1桁~3桁の場合にもヒットするはず。なぜなら、3桁の場合なら4桁目の処理は該当するものがないからヒットしないだけであるから。以下、同様。 //また、「)」の前の算用数字がすべて漢数字化されてしまうので、場合によっては使わないほうがいい場合もあることを付記しておきます。その場合にはマクロ記述のなかの「)」を削除して使ってください。 | |
▲目次へ |
欧文の半角処理
//■欧文中の間違ったスペースの削除と挿入 replaceallfast "\\f[A-Za-z0-9.,:;]\\f[ \t]+\\f[A-Za-z0-9]\\f","\\1 \\3",inselect,regular; replaceallfast "\\f[A-Za-z0-9.,:;]\\f [ \t]+\\f[A-Za-z0-9]\\f","\\1 \\3",inselect,regular; //■,.:;()[]は欧文中では半角に replaceallfast "\\f[\\]\\)\\.A-Za-z0-9]\\f[,、、]","\\1,",inselect,regular; replaceallfast "\\f[\\]\\)A-Za-z0-9]\\f[.。。]","\\1.",inselect,regular; replaceallfast "\\f[\\]\\)\\.A-Za-z0-9]\\f:\\f[\\[\\(A-Za-z0-9]\\f","\\1: \\3",inselect,regular; replaceallfast "\\f[\\]\\)\\.A-Za-z0-9]\\f;\\f[\\[\\(A-Za-z0-9]\\f","\\1; \\3",inselect,regular; replaceallfast "\\f[A-Za-z0-9\\.,:;]\\f(\\f[A-Za-z0-9]\\f","\\1 (\\3",inselect,regular; replaceallfast "\\f[A-Za-z0-9\\.,:;]\\f)\\f[A-Za-z0-9\\.,:;]\\f","\\1) \\3",inselect,regular; replaceallfast "\\f[A-Za-z0-9\\.,:;]\\f[\\f[A-Za-z0-9]\\f","\\1 [\\3",inselect,regular; replaceallfast "\\f[\\]A-Za-z0-9\\.,:;]\\f]\\f[A-Za-z0-9\\.,:;]\\f","\\1] \\3",inselect,regular; //■記号類と欧文とのあいだの半角スペースの挿入または削除 //開きの括弧類の前が英数文字や記号類なら半角スペースを挿入 replaceallfast "\\f[\\]\\)\\.,:;A-Za-z0-9]\\f[\\(\\[]\\f","\\1 \\2",inselect,regular; //閉じの括弧類の前が英数文字か記号類だったら無用な半角スペースを削除 replaceallfast "\\f[\\.,:;A-Za-z0-9]\\f \\f[\\]\\)]\\f","\\1\\3",inselect,regular; //閉じの括弧類の後ろが英数文字なら半角スペースを挿入するが、句読点類のときは挿入しない replaceallfast "\\f[\\]\\)]\\f[A-Za-z0-9\\[\\(]\\f","\\1 \\2",inselect,regular; replaceallfast "\\f[\\]\\)A-Za-z0-9]\\f \\f[\\.,:;]\\f","\\1\\3",inselect,regular //句読点(,.:;)の後ろは半角スペース挿入(ただし.,等の例外あり) replaceallfast "\\f[,\\.:;]\\f[A-Za-z0-9\\[\\(]\\f","\\1 \\2",inselect,regular replaceallfast "\\. \\f[,:;]\\f",".\\1",inselect,regular | |
▲目次へ |
漢字を開く
//■漢字を開く(必須篇・普通は変換したほうがいいと思われるもの〔きりがないので// 頻度の高いものだけ〕) //(★はママのものもありうるもの→★の付いたものは変換後に確認する) //◆あ行 //敢えて→あえて replaceallfast "敢えて","あえて★",inselect,regular; //明か→明らか replaceallfast "\\f[^解言き判文]\\f明か\\f[^さしすせそりる]\\f","\\1明らか★\\3",inselect,regular; //辺り→あたり replaceallfast "辺り","あたり★",inselect,regular; //余り→あまり replaceallfast "\\f[^字]\\f余り","\\1あまり★",inselect,regular; //予め→あらかじめ replaceallfast "予め","あらかじめ★",inselect,regular; //凡ゆる→あらゆる replaceallfast "凡ゆる","あらゆる★",inselect,regular; //有り方→ありかた replaceallfast "[有在あ]り[方|かた]","ありかた★",inselect,regular; //有難い→ありがたい replaceallfast "有り\*難\\f[いかきくけ]\\f","ありがた★\\1",inselect,regular; //有難う→ありがとう replaceallfast "有り\*難う","ありがとう★",inselect,regular; //有様→ありさま replaceallfast "有り\*様","ありさま★",inselect,regular; //如何に→いかに replaceallfast "如何に","いかに★",inselect,regular; //行く→い★く(本来の動詞以外のとき) replaceallfast "\\f[てに]\\f行\\f[かきくけこっ]\\f","\\1い★\\3",inselect,regular; //幾ら→いくら replaceallfast "幾ら","いくら★",inselect,regular; //些か→いささか replaceallfast "些か","いささか★",inselect,regular; //何れ→いずれ replaceallfast "何れ","いずれ★",inselect,regular; //頂く→いただ★く(例外:本来の動詞の場合) replaceallfast "頂\\f[いかきくけこ]\\f","いただ★\\1",inselect,regular; //一応→いちおう replaceallfast "一応","いちおう★",inselect,regular; //何時→いつ★(例外:何時間、何時に) replaceallfast "何時\\f[^間に]\\f","いつ★\\1",inselect,regular; //一向に→いっこう★に(例外:一向宗、一向一揆) replaceallfast "一向\\f[^宗一]\\f","いっこう★\\1",inselect,regular; //一切→いっさい★(例外:一切合切、一切れ) replaceallfast "一切\\f[^合れ]\\f","いっさい★\\1",inselect,regular; //一緒→いっしょ replaceallfast "一緒","いっしょ★",inselect,regular; //一斉→いっせい★(例外:一斉射撃) replaceallfast "一斉\\f[^射]\\f","いっせい★\\1",inselect,regular; //一層→いっそう(例外:、均一層、同一層) replaceallfast "\\f[^均同]\\f一層","\\1いっそう★",inselect,regular; //一体→いったい★(例外:一体化、一体感、一体となる、一体になる、統一体、同一体、三位一体、など) replaceallfast "\\f[^位と統同に]\\f一体\\f[^化感]\\f","\\1いったい★\\3",inselect,regular; //一旦→いったん replaceallfast "一旦","いったん★",inselect,regular; //色々→いろいろ replaceallfast "色々","いろいろ★",inselect,regular; //~する上で→~するうえ★で(例外:上下をあらわす場合) replaceallfast "\\f[たのる]\\f上\\f[でに、]\\f","\\1うえ★\\3",inselect,regular; //~の内に→~のうち★に(例外:内部、内心など) replaceallfast "\\f[のる]\\f内\\f[にの]\\f","\\1うち★\\3",inselect,regular; //於いて→おいて replaceallfast "於\\f[いて|ける]\\f","お\\1",inselect,regular; //往々→おうおう replaceallfast "往々","おうおう★",inselect,regular; //大いに→おおいに replaceallfast "大いに","おおいに★",inselect,regular; //大袈裟→大げさ replaceallfast "大袈裟","大げさ★",inselect,regular; //概ね→おおむね replaceallfast "概ね","おおむね★",inselect,regular; //恐らく→おそらく replaceallfast "恐らく","おそらく★",inselect,regular; //各々→おのおの replaceallfast "各々","おのおの★",inselect,regular; //面白い→おもしろい replaceallfast "面白\\f[いかきくけさしそ]\\f","おもしろ★\\1",inselect,regular; //及び→および(例外:及び腰) replaceallfast "及び\\f[^腰]\\f","および★\\1",inselect,regular; //凡そ→およそ★ replaceallfast "凡そ","およそ★",inselect,regular; //◆か行 //却って→かえって replaceallfast "却って","かえって★",inselect,regular; //拘らず→かかわらず★(例外:「こだわらず」と読む場合) replaceallfast "拘らず","かかわらず★",inselect,regular; //掛け→かけ★(例外:命がけ、心がけ、手がけ) replaceallfast "\\f[^内命願心腰仕外手膝肘]\\f掛け","\\1かけ★",inselect,regular; replaceallfast "\\f[命心手]\\fかけ★","\\1がけ",inselect,regular; //且つ→かつ replaceallfast "且つ","かつ★",inselect,regular; //嘗て→かつて replaceallfast "嘗て","かつて★",inselect,regular; //辛うじて→かろうじて replaceallfast "辛うじて","かろうじて★",inselect,regular; //~して来た←→~してき★た(本来の動詞以外のとき) replaceallfast "\\f[てに]\\f来\\f[たて]\\f","\\1き★\\3",inselect,regular; //極めて→きわめて replaceallfast "極めて","きわめて★",inselect,regular; //~する位→~するくらい★(例外:位階、位相、位置、など replaceallfast "\\f[じたのるれ]\\f位\\f[^階相置]\\f","\\1くらい★\\3",inselect,regular; //~して来る←→~してくる★(本来の動詞以外のとき) replaceallfast "\\f[にて]\\f来る","\\1くる★",inselect,regular; //極く→ごく replaceallfast "極く","ごく★",inselect,regular; //~する毎→~するごと★ replaceallfast "\\f[うたる年月週日時間分秒]\\f毎\\f[^年月週日時分秒]\\f","\\1ごと★\\3",inselect,regular; //如く→ごとく replaceallfast "如\\f[きく]\\f","ごと★\\1",inselect,regular; //殊に→ことに replaceallfast "殊に","ことに★",inselect,regular; //~して来ない←→~してこな★い(本来の動詞以外のとき) replaceallfast "て来な\\f[いかくけ]\\f","てこな★\\1",inselect,regular; //◆さ行 //差し当たり→さしあたり replaceallfast "差し当た\*\\f[って|り]\\f","さしあた★\\1",inselect,regular; //早速→さっそく replaceallfast "早速","さっそく★",inselect,regular; //様々→さまざま replaceallfast "様々","さまざま★",inselect,regular; //更に→さらに★(例外:変更に、夜更に、など) replaceallfast "\\f[^変夜]\\f更に","\\1さらに★",inselect,regular; //然し→しかし replaceallfast "然し","しかし★",inselect,regular; //然るべき→しかるべき replaceallfast "然るべき","しかるべき★",inselect,regular; //頻りに→しきりに replaceallfast "頻りに","しきりに★",inselect,regular; //至極→しごく replaceallfast "至極","しごく★",inselect,regular; //従って→したがって★(例外:動詞の場合) replaceallfast "\\f[^に]\\f従って","\\1したがって★",inselect,regular; //屡々→しばしば replaceallfast "屡々","しばしば★",inselect,regular; //暫く→しばらく replaceallfast "暫く","しばらく★",inselect,regular; //かも知れない→かもしれない replaceallfast "かも知れ\\f[ずなぬま]\\f","かもしれ★\\1",inselect,regular; //随分→ずいぶん replaceallfast "随分","ずいぶん★",inselect,regular; //過ぎない←→すぎ★ない(例外:本来の動詞の場合) replaceallfast "過ぎ\\f[ずな]\\f","すぎ★\\1",inselect,regular; //直ぐ→すぐ replaceallfast "直ぐ","すぐ★",inselect,regular; //精々→せいぜい replaceallfast "精々","せいぜい★",inselect,regular; //其れ→それ replaceallfast "其れ","それ★",inselect,regular; //◆た行 //大した→たいし★た(例外:増大した、拡大した、など) replaceallfast "\\f[^拡増]\\f大し\\f[たて]\\f","\\1たいし★\\3",inselect,regular; //大体→だいたい★ replaceallfast "大体","だいたい★",inselect,regular; //大抵→たいてい★(例外:並大抵) replaceallfast "\\f[^並み]\\f大抵","\\1たいてい★",inselect,regular; //大分→だいぶ★(例外:拡大分、増大分、大分県、大分市、大分類、など) replaceallfast "\\f[^拡増]\\f大分\\f[^県市類]\\f","\\1だいぶ★\\3",inselect,regular; //沢山→たくさん(例外:子沢山) replaceallfast "\\f[^子]\\f沢山","\\1たくさん★",inselect,regular; //只→ただ★(例外:地名の只見) replaceallfast "只\\f[^中見]\\f","ただ\\1",inselect,regular; //但し→ただし replaceallfast "但し","ただし★",inselect,regular; //直ちに→ただちに replaceallfast "直ちに","ただちに★",inselect,regular; //私達→私たち★ replaceallfast "\\f[^伊栄闊執上速調伝到友配発練]\\f達\\f[^さしすせ意治人成者磨]\\f","\\1たち★\\3",inselect,regular; //忽ち→たちまち replaceallfast "忽ち","たちまち★",inselect,regular; //~する度→~するたび★(例外:度合い、度胸、度数、度量、など) replaceallfast "\\f[うくすたる]\\f度\\f[^合胸数量]\\f","\\1たび★\\3",inselect,regular; //度々→たびたび replaceallfast "度々","たびたび★",inselect,regular; //多分→たぶん replaceallfast "多分","たぶん★",inselect,regular; //~の為→~のため★ replaceallfast "\\f[のる]\\f為","\\1ため★",inselect,regular; //段々→だんだん★(例外:段々畑) replaceallfast "段々\\f[^畑]\\f","だんだん★\\1",inselect,regular; //因みに→ちなみに replaceallfast "因みに","ちなみに★",inselect,regular; //丁度→ちょうど replaceallfast "丁度","ちょうど★",inselect,regular; //一寸→ちょっと★(例外:一寸法師など) replaceallfast "一寸\\f[^の法]\\f","ちょっと★\\1",inselect,regular; //遂に→ついに replaceallfast "遂に","ついに★",inselect,regular; //片付ける→片付ける replaceallfast "\\f[位置|意味|裏|運命|格|片|価値|関係|関連|気|基礎|傾向|限界|心|根拠|近|秩序|動機|特徴|名|根|論理]\\f付\\f[いかきくけこ]\\f","\\1づ★\\3",inselect,regular; //思い付く→思いつく replaceallfast "\\f[思い|顔|気が|気を|傷|氷り|焦げ|抱き|見|結び|燃え]\\f付\\f[いかきくけこ]\\f","\\1つ★\\3",inselect,regular; //都度→つど replaceallfast "都度","つど★",inselect,regular; //手掛かり→手がかり replaceallfast "手掛かり","手がかり★",inselect,regular; //出来ない→でき★ない(例外:上出来、出来事) replaceallfast "\\f[^上不]\\f出来\\f[^高事]\\f","\\1でき★\\3",inselect,regular; //到底→とうてい replaceallfast "到底","とうてい★",inselect,regular; //何処→どこ replaceallfast "何処","どこ★",inselect,regular; //(た|の|る)所→ところ★(例外:所以、所見、所在、所属、所長、所得、所有、など) replaceallfast "\\f[たのる]\\f所\\f[^為感期見作載在産詮蔵属長定得有与用論]\\f","\\1ところ★\\3",inselect,regular; //途端→とたん replaceallfast "途端","とたん★",inselect,regular; //兎に角→とにかく replaceallfast "兎\\f[にも]\\f角","と\\1かく★",inselect,regular; //共に→ともに★ replaceallfast "共に","ともに★",inselect,regular; //◆な行 //無い→な★い replaceallfast "無\\f[いかきくけさし]\\f","な★\\1",inselect,regular; //乃至→ないし replaceallfast "乃至","ないし★",inselect,regular; //尚(お)→なお replaceallfast "\\f[^高]\\f尚お\*","\\1なお★",inselect,regular; replaceallfast "尚更","なおさら",inselect,regular; //~の中で←→~のなか★で(例外:内部の意味のとき) replaceallfast "\\f[。、たのる只]\\f中\\f[かでにのへを]\\f","\\1なか★\\3",inselect,regular; replaceallfast "世のなか","世の中",inselect,regular; //仲々→なかなか replaceallfast "仲々","なかなか★",inselect,regular; //乍ら→ながら replaceallfast "乍ら","ながら★",inselect,regular; //就中→なかんずく replaceallfast "就中","なかんずく★",inselect,regular; //並びに→ならびに replaceallfast "並びに","ならびに★",inselect,regular; //成(る)程→なるほど replaceallfast "成る\*程","なるほど★",inselect,regular; //何ら→なん★ら replaceallfast "何\\f[ただてでとのら]\\f","なん★\\1",inselect,regular; //俄(か)→にわか replaceallfast "俄か\*","にわか★",inselect,regular; //◆は行 //筈→はず replaceallfast "\\f[くたのる]\\f筈","\\1はず★",inselect,regular; //果たして→はたして★(例外:動詞の場合) replaceallfast "果たして","はたして★",inselect,regular; //甚だ→はなはだ replaceallfast "甚だ","はなはだ★",inselect,regular; //遙か→はるか★ replaceallfast "遙か","はるか★",inselect,regular; //相応しい→ふさわしい(例外:相応した) replaceallfast "相応し\\f[いかきくけ]\\f","ふさわし★\\1",inselect,regular; //普段→ふだん replaceallfast "普段","ふだん★",inselect,regular; //それ程→それほど★(例外:程度) replaceallfast "\\f[いうたのるれ今先]\\f程\\f[^度]\\f","\\1ほど★\\3",inselect,regular; //殆ど→ほとんど replaceallfast "殆ど","ほとんど★",inselect,regular; //◆ま行 //誠に→まことに★ replaceallfast "誠に","まことに★",inselect,regular; //正に→まさに★(例外:公正に、校正に、厳正に、方正に、など) replaceallfast "\\f[^公厳校適方]\\f正に","\\1まさに★",inselect,regular; //先ず→まず replaceallfast "先ず","まず★",inselect,regular; //益々→ますます replaceallfast "益々","ますます★",inselect,regular; //又→また★(例外:地名の柴又、名前の勝又) replaceallfast "\\f[^勝柴]\\f又","\\1また★",inselect,regular; //迄→まで replaceallfast "迄","まで★",inselect,regular; //~して見る→~してみる replaceallfast "\\f[てと]\\f見\\f[たよらるれろ]\\f","\\1み\\3",inselect,regular; //寧ろ→むしろ replaceallfast "寧ろ","むしろ★",inselect,regular; //無闇→むやみ replaceallfast "無闇","むやみ★",inselect,regular; //巡る→めぐ★(例外:動詞の場合) replaceallfast "巡\\f[っらりるれろ]\\f","めぐ★\\1",inselect,regular; //滅多→めった replaceallfast "滅多","めった★",inselect,regular; //若しくは→もしくは replaceallfast "若しくは","もしくは★",inselect,regular; //勿論→もちろん replaceallfast "勿論","もちろん★",inselect,regular; //持(たちつてとっ)→も★(たちつてとっ)(例外:本来の動詞の場合) replaceallfast "\\f[^維金気心支力手把]\\f持\\f[たちつてとっ]\\f","\\1も★\\3",inselect,regular; replaceallfast "もち\\f[主場]\\f","持ち\\1",inselect,regular; //以って→もって replaceallfast "以って","もって★",inselect,regular; //尤も→もっとも replaceallfast "尤も","もっとも★",inselect,regular; //専ら→もっぱら replaceallfast "専ら","もっぱら★",inselect,regular; //元々→もともと replaceallfast "元々","もともと★",inselect,regular; //最早→もはや replaceallfast "最早","もはや★",inselect,regular; //貰う→もら★う(例外:動詞の場合) replaceallfast "貰\\f[いうえおっわ]\\f","もら★\\1",inselect,regular; //諸々→もろもろ replaceallfast "諸々","もろもろ★",inselect,regular; //◆や・ら・わ行 //矢張(り)→やはり replaceallfast "矢張り\*","やはり★",inselect,regular; //遣り方→やりかた replaceallfast "[遣や]り方","やりかた★",inselect,regular; //(が|た|の|る|れ)故→ゆえ★(例外:故意、故郷、故国、故人、など) replaceallfast "\\f[がたのるれ]\\f故\\f[^意郷国事障人買]\\f","\\1ゆえ★\\3",inselect,regular; //様に→よう★に(例外:多様、同様、など) replaceallfast "\\f[^異一客多同別変皆模]\\f様\\f[なにの]\\f","\\1よう★\\3",inselect,regular; //漸く→ようやく replaceallfast "漸く","ようやく★",inselect,regular; //余程→よほど replaceallfast "余程","よほど★",inselect,regular; //分る→わか★る(例外:身分か、部分か、など) //解る→わか★る(例外:見解か、難解か、など) replaceallfast "\\f[^見自何難批部身]\\f[判分解]\\fか\*\\f[らりるれろっ]\\f","\\1わか★\\4",inselect,regular; //僅か→わずか replaceallfast "僅か","わずか★",inselect,regular; //亘る→わたる replaceallfast "亘\\f[っらりるれろ]\\f","わた★\\1",inselect,regular; //■漢字を開く(選択篇・どちらかを選択して使用するもの) //◆あ行 //~する間←→~するあいだ★ replaceallfast "\\f[のる]\\f間\\f[かでにのを、」]\\f","\\1あいだ★\\3",inselect,regular; //宛(て)←→あて★ replaceallfast "宛て\*\\f[^先]\\f","あて★\\1",inselect,regular; //後で←→あとで★(例外:最後で、直後で、背後で、前後で、など) replaceallfast "\\f[^以最直背前]\\f後で","\\1あと★で",inselect,regular; //(表|現)(さ|し|す|せ|そ|れ)←→(表|現)わ★(さ|し|す|せ|そ|れ)(例外:発表する、出現する、など) replaceallfast "\\f[^公代発]\\f表わ\*\\f[さしすせそれ]\\f","\\1表わ★\\3",inselect,regular; replaceallfast "\\f[かがちてでとにはを]\\f現わ\*\\f[しすれ]\\f","\\1現わ★\\3",inselect,regular; //或(る)いは←→あるいは replaceallfast "或る\*いは","あるいは★",inselect,regular; //或る←→ある★ replaceallfast "或る","ある★",inselect,regular; //依然←→いぜん replaceallfast "依然","いぜん★",inselect,regular; //至る←→いたる replaceallfast "至\\f[らりるれろっ]\\f","いた★\\1",inselect,regular; //致す←→いた★す replaceallfast "\\f[^一合]\\f致\\f[さしすせそ]","\\1いた★\\3",inselect,regular; //今←→いま★(例外:今朝、今回、今度、今月、など) replaceallfast "\\f[たるの。、]\\f今\\f[^朝回月後世度日年晩夜]\\f","\\1いま★\\3",inselect,regular; //後ろで←→うしろで replaceallfast "後ろで","うしろで★",inselect,regular; //生れ←→生まれ replaceallfast "生れ","生まれ★",inselect,regular; //得る←→え★る←→う★る replaceallfast "得る","うる★",inselect,regular; replaceallfast "\\f[しりれを]\\f得\\f[ずたてな]\\f","\\1え★\\3",inselect,regular; //置く←→お★く(例外:本来の動詞の場合) replaceallfast "て置\\f[いかきくけこ]\\f","てお★\\1",inselect,regular; //行う←→行な★う←→おこな★う replaceallfast "\\f[をがは]\\f行な\*\\f[いうえおっわ]\\f","\\1おこな★\\3",inselect,regular; //自ずから←→おのずから replaceallfast "自ずから","おのずから★",inselect,regular; //折←→折り★←→おり★ replaceallfast "\\f[たるの時]\\f折り\*\\f[^角衝]\\f","\\1おり★\\3",inselect,regular; //◆か行 //関わる/係わる←→かかわる replaceallfast "[関係]わ\*\\f[らりるれろっ]\\f","かかわ★\\1",inselect,regular; //限り←→かぎり★ replaceallfast "\\f[いのる]\\f限り","\\1かぎり★",inselect,regular; //(い|え|み|り)方←→(い|え|み|り)かた★ replaceallfast "\\f[いえみり]\\f方","\\1かた★",inselect,regular; //~し難い←→~しがた★い replaceallfast "難\\f[いきくけ]\\f","がた★\\1",inselect,regular; //~する形で←→~するかたち★で replaceallfast "\\f[うたなのる]\\f形\\f[でにの]\\f","\\1かたち★\\3",inselect,regular; //仮(り)に←→かりに replaceallfast "仮り\*に","かりに★",inselect,regular; //下さい←→くださ★い replaceallfast "\\f[てにを]\\f下さ\\f[いっらりるれろ]\\f","\\1くださ★\\3",inselect,regular; //詳しい←→くわしい replaceallfast "詳し\\f[いかくけ]\\f","くわし★\\1",inselect,regular; //決して←→けっして★(例外:解決して、対決して、判決してなど) replaceallfast "\\f[^解対判]\\f決して","\\1けっして★",inselect,regular; //頃←→ころ★←→ごろ★ replaceallfast "\\f[^近先手年中日見]\\f頃","\\1ころ★",inselect,regular; //◆さ行 //際に←→さい★に(例外:間際に、実際に、など) replaceallfast "\\f[^壁交国実戸手分間窓水]\\f際\\f[しにのは、]\\f","\\1さい★\\3",inselect,regular; //実は←→じつ★は(例外:現実に、事実に、忠実に、など) replaceallfast "\\f[^果確現口史事写真誠着忠内無名]\\f実\\f[なにのはを]\\f","\\1じつ★\\3",inselect,regular; //既に←→すでに replaceallfast "既に","すでに★",inselect,regular; //即ち←→すなわち replaceallfast "即ち","すなわち★",inselect,regular; //全て/総て/凡て←→すべて replaceallfast "[全総凡]て","すべて★",inselect,regular; //済む←→す★む replaceallfast "済\\f[まみむめもん]\\f","す★\\1",inselect,regular; //◆た行 //~に対して←→~にたい★して replaceallfast "に対\\f[すし]\\f","にたい★\\1",inselect,regular; //絶えず←→たえず replaceallfast "絶えず","たえず★",inselect,regular; //類←→たぐい★(例外:類型、類似、類推、類比、など) replaceallfast "の類\\f[^縁型似推比]\\f","のたぐい★\\1",inselect,regular; //確かに←→たしかに replaceallfast "確かに","たしかに★",inselect,regular; //例えば←→たとえば replaceallfast "例えば","たとえば★",inselect,regular; //単なる←→たん★なる(例外:簡単に、など) replaceallfast "\\f[^簡]\\f単\\f[なに]\\f","\\1たん★\\3",inselect,regular; //違いない←→ちがいな★い(例外:間違いない、など) replaceallfast "\\f[^間]\\f違いな\\f[いかくけ]\\f","\\1ちがいな★\\3",inselect,regular; //続く←→つづく replaceallfast "\\f[^手]\\f続\\f[いかきくけこ]\\f","\\1つづ★\\3",inselect,regular; //常に←→つねに★(例外:非常に、平常に、尋常に、など) replaceallfast "\\f[^異尋正非平]\\f常に","\\1つねに★",inselect,regular; //~する時に←→~するとき★に replaceallfast "\\f[うたのる]\\f時\\f[かがでとにのはまも、]\\f","\\1とき★\\3",inselect,regular; //時折り←→時おり←→ときおり replaceallfast "時[折り|おり]","ときおり★",inselect,regular; //時々←→時どき←→ときどき replaceallfast "時[々|どき]","ときどき★",inselect,regular; //特に←→とくに★ replaceallfast "特に","とくに★",inselect,regular; //伴う←→伴なう←→ともなう replaceallfast "伴な\*\\f[いうえおっ]\\f","ともな★\\1",inselect,regular; //◆な行 //直す、直る←→なお★す、なお★る replaceallfast "\\f[^硬素正率実手見廉]\\f直\\f[さしすせそらりるれろっ]\\f","\\1なお★\\3",inselect,regular; //何物←→何もの replaceallfast "何物","何もの★",inselect,regular; //~の後に←→~ののち★に replaceallfast "\\f[。、(がたのはる]\\f後\\f[にの、]\\f","\\1のち★\\3",inselect,regular; //◆は行 //外す←→はず★す(例外:除外し、的外れ、など) replaceallfast "\\f[^以意除場疎度欄]\\f外\\f[さしすせそれ]\\f","\\1はず★\\3",inselect,regular; //一つ←→ひとつ★ replaceallfast "一つ","ひとつ★",inselect,regular; //人々←→人びと replaceallfast "人々","人びと★",inselect,regular; //一人←→ひとり★(例外:同一人、一人称) replaceallfast "\\f[^同]\\f一人\\f[^称]\\f","\\1ひとり★\\3",inselect,regular; //風に←→ふう★に(例外:風に吹かれ) replaceallfast "\\f[^歌作新屏]\\f風\\f[でなにの]\\f","\\1ふう★\\3",inselect,regular; //再び←→ふたたび replaceallfast "再び","ふたたび★",inselect,regular; //他ならず←→外ならず←→ほかなら★ず replaceallfast "[他外]なら\\f[ずな]\\f","ほかなら★\\1",inselect,regular; //◆ま行 //紛れ←→まぎれ(例外:気紛れ) replaceallfast "\\f[^気]\\f紛れ","\\1まぎれ★",inselect,regular; //全く←→まったく replaceallfast "全く","まったく★",inselect,regular; //見い出す←→見出す←→みいだす replaceallfast "見い\*出\\f[さしすせそ]\\f","みいだ★\\1",inselect,regular; //見事←→みごと replaceallfast "見事","みごと★",inselect,regular; //難しい←→むずかし★い replaceallfast "難し\\f[いかきくけさそ]\\f","むずかし★\\1",inselect,regular; //無論←→むろん★ replaceallfast "無論","むろん★",inselect,regular; //目指す←→めざす replaceallfast "目指\\f[さしすせそ]\\f","めざ★\\1",inselect,regular; //最も←→もっとも★(例外:最大級比較の場合) replaceallfast "最も","もっとも★",inselect,regular; //~の下で←→~のもと★で(例外:下部、下方をあらわす場合) replaceallfast "の下\\f[にで、]\\f","のもと★\\1",inselect,regular; //基づく←→もとづく replaceallfast "基づ\\f[いかきくけこ]\\f","もとづ★\\1",inselect,regular; | |
▲目次へ |
複合動詞の修正
//(言い|いい)(合う|あう|当てる|あてる|返す|かえす|切る|きる|出す|だす|立てる|たてる|募る|つのる|逃れる|のがれる|放つ|はなつ|負かす|まかす|負ける|まける|淀む|よどむ|寄る|よる|渡す|わたす)→言い★(合う|当てる|返す|切る|出す|立てる|募る|逃れる|放つ|負かす|負ける|淀む|寄る|渡す) replaceallfast "[言い]い[合あ]\\f[いうえおっ]\\f","言い★合\\1",inselect,regular; replaceallfast "[言い]い[当あ]\\f[たて]\\f","言い★当\\1",inselect,regular; replaceallfast "[言い]いかえ\\f[さしすせそ]\\f","言い★返\\1",inselect,regular; replaceallfast "いい返\\f[さしすせそ]\\f","言い★返\\1",inselect,regular; replaceallfast "[言い]い[切き]\\f[らりるれろっ]\\f","言い★切\\1",inselect,regular; replaceallfast "[言い]い[出だ]\\f[さしすせそ]\\f","言い★出\\1",inselect,regular; replaceallfast "[言い]い[立た]て","言い★立て",inselect,regular; replaceallfast "[言い]いつの\\f[らりるれろっ]\\f","言い★募\\1",inselect,regular; replaceallfast "いい募\\f[らりるれろっ]\\f","言い★募\\1",inselect,regular; replaceallfast "[言い]いのがれ","言い★逃れ",inselect,regular; replaceallfast "いい逃れ","言い★逃れ",inselect,regular; replaceallfast "[言い]いはな\\f[ちつてとっ]\\f","言い★放\\1",inselect,regular; replaceallfast "いい放\\f[ちつてとっ]\\f","言い★放\\1",inselect,regular; replaceallfast "[言い]い[負ま]\\f[かけ]\\f","言い★負\\1",inselect,regular; replaceallfast "[言い]いよど\\f[まみむめもん]\\f","言い★淀\\1",inselect,regular; replaceallfast "いい淀\\f[まみむめもん]\\f","言い★淀\\1",inselect,regular; replaceallfast "[言い]い[寄よ]\\f[らりるれろっ]\\f","言い★寄\\1",inselect,regular; replaceallfast "[言い]いわた\\f[さしすせそ]\\f","言い★渡\\1",inselect,regular; replaceallfast "いい渡\\f[さしすせそ]\\f","言い★渡\\1",inselect,regular; //(浮き|うき)(上がる|あがる|沈む|しずむ|出す|だす|立つ|たつ|出る|でる)→浮き★(上がる|沈む|出す|立つ|出る) replaceallfast "[浮う]き[上あ]が","浮き★上が",inselect,regular; replaceallfast "[浮う]きしず\\f[まみむめもん]\\f","浮き★沈\\1",inselect,regular; replaceallfast "うき沈\\f[まみむめもん]\\f","浮き★沈\\1",inselect,regular; replaceallfast "[浮う]き[出だ]\\f[さしすせそ]\\f","浮き★出\\1",inselect,regular; replaceallfast "[浮う]き[立た]\\f[たちつてとっ]\\f","浮き★立\\1",inselect,regular; replaceallfast "[浮う]き[出で]\\f[たてる]\\f","浮き★出\\1",inselect,regular; //(受け|うけ)(入れる|いれる|継ぐ|つぐ|付ける|つける|止める|とめる|取る|とる|持つ|もつ)→受け★(入れる|継ぐ|付ける|止める|取る|持つ) replaceallfast "[受う]け[入い]れ","受け★入れ",inselect,regular; replaceallfast "[受う]け[継つ]\\f[いがぎぐげご]\\f","受け★継\\1",inselect,regular; replaceallfast "[受う]け[付つ]け","受け★付け",inselect,regular; replaceallfast "[受う]け[止と]め","受け★止め",inselect,regular; replaceallfast "[受う]け[取と]\\f[らりるれろっ]\\f","受け★取\\1",inselect,regular; replaceallfast "[受う]け[持も]\\f[たちつてとっ]\\f","受け★持\\1",inselect,regular; //(打ち|うち)(合う|あう|上がる|あがる|明ける|あける|上げる|あげる|当てる|あてる|落とす|おとす|返す|かえす|克つ|勝つ|かつ|切る|きる|砕く|くだく|消す|けす|込む|こむ|倒す|たおす|出す|だす|立てる|たてる|解ける|とける|取る|とる|抜く|ぬく|負かす|まかす|破る|やぶる|寄せる|よせる)→打ち★(合う|上がる|明ける|上げる|落とす|返す|克つ|勝つ|切る|砕く|消す|込む|出す|立てる|解ける|取る|抜く|負かす|破る|寄せる) replaceallfast "[打う]ち[合あ]\\f[いうえおわっ]\\f","打ち★合\\1",inselect,regular; replaceallfast "[打う]ち[明あ]け","打ち★明け",inselect,regular; replaceallfast "[打う]ち[上あ]\\f[がげ]\\f","打ち★上\\1",inselect,regular; replaceallfast "[打う]ち[当あ]\\f[たて]\\f","打ち★当\\1",inselect,regular; replaceallfast "[打う]ち[落お]と","打ち★落と",inselect,regular; replaceallfast "[打う]ちかえ\\f[さしすせそ]\\f","打ち★返\\1",inselect,regular; replaceallfast "うち返\\f[さしすせそ]\\f","打ち★返\\1",inselect,regular; replaceallfast "[打う]ち[克勝か]\\f[たちつてとっ]\\f","打ち★克★\\1",inselect,regular; replaceallfast "[打う]ち[切き]\\f[らりるれろっ]\\f","打ち★切\\1",inselect,regular; replaceallfast "[打う]ちくだ\\f[いかきくけこ]\\f","打ち★砕\\1",inselect,regular; replaceallfast "うち砕\\f[いかきくけこ]\\f","打ち★砕\\1",inselect,regular; replaceallfast "[打う]ち[消け]\\f[さしすせそ]\\f","打ち★消\\1",inselect,regular; replaceallfast "[打う]ち[込こ]\\f[まみむめもん]\\f","打ち★込\\1",inselect,regular; replaceallfast "[打う]ちたお\\f[さしすせそ]\\f","打ち★倒\\1",inselect,regular; replaceallfast "うち倒\\f[さしすせそ]\\f","打ち★倒\\1",inselect,regular; replaceallfast "[打う]ち[出だ]\\f[さしすせそ]\\f","打ち★出\\1",inselect,regular; replaceallfast "[打う]ち[立た]て","打ち★立て",inselect,regular; replaceallfast "[打う]ち[解と]け","打ち★解け",inselect,regular; replaceallfast "[打う]ち[取と]\\f[らりるれろっ]\\f","打ち★取\\1",inselect,regular; replaceallfast "[打う]ち[抜ぬ]\\f[いかきくけこ]\\f","打ち★抜\\1",inselect,regular; replaceallfast "[打う]ち[負ま]\\f[かけ]\\f","打ち★負\\1",inselect,regular; replaceallfast "[打う]ちやぶ\\f[らりるれろっ]\\f","打ち★破\\1",inselect,regular; replaceallfast "うち破\\f[らりるれろっ]\\f","打ち★破\\1",inselect,regular; replaceallfast "[打う]ち[寄よ]せ","打ち★寄せ",inselect,regular; //(産み|うみ)(落とす|おとす|出す|だす)→産み★(落とす|出す) replaceallfast "[産う]み[出だ]\\f[さしすせそ]\\f","産み★出\\1",inselect,regular; replaceallfast "[産う]み[落お]と","産み★落と",inselect,regular; //(売り|うり)(切る|きる|込む|こむ|出す|だす|払う|はらう|戻す|もどす)→売り★(切る|込む|出す|払う|戻す) replaceallfast "[売う]り[切き]\\f[らりるれろっ]\\f","売り★切\\1",inselect,regular; replaceallfast "[売う]り[込こ]\\f[まみむめもん]\\f","売り★込\\1",inselect,regular; replaceallfast "[売う]り[出だ]\\f[さしすせそ]\\f","売り★出\\1",inselect,regular; replaceallfast "[売う]りはら\\f[いうえおっ]\\f","売り★払\\1",inselect,regular; replaceallfast "うり払\\f[いうえおっ]\\f","売り★払\\1",inselect,regular; replaceallfast "[売う]りもど\\f[さしすせそ]\\f","売り★戻\\1",inselect,regular; replaceallfast "うり戻\\f[さしすせそ]\\f","売り★戻\\1",inselect,regular; //(選び|えらび)(出す|だす|取る|とる|抜く|ぬく)→選び★(出す|取る|抜く) replaceallfast "選びだ\\f[さしすせそ]\\f","選び★出\\1",inselect,regular; replaceallfast "えらびだ\\f[さしすせそ]\\f","選び★出\\1",inselect,regular; replaceallfast "選びと\\f[らりるれろっ]\\f","選び★取\\1",inselect,regular; replaceallfast "えらびと\\f[らりるれろっ]\\f","選び★取\\1",inselect,regular; replaceallfast "選びぬ\\f[いかきくけこ]\\f","選び★抜\\1",inselect,regular; replaceallfast "えらびぬ\\f[いかきくけこ]\\f","選び★抜\\1",inselect,regular; //(追い|おい)(上げる|あげる|落とす|おとす|返す|かえす|込む|こむ|出す|だす|立てる|たてる|散らす|ちらす|抜く|ぬく|払う|はらう|求める|もとめる)→追い★(上げる|落とす|返す|込む|出す|立てる|散らす|抜く|払う|求める) replaceallfast "[追お]い[上あ]げ","追い★上げ",inselect,regular; replaceallfast "[追お]い[落お]と","追い★落と",inselect,regular; replaceallfast "[追お]いかえ\\f[さしすせそ]\\f","追い★返\\1",inselect,regular; replaceallfast "おい返\\f[さしすせそ]\\f","追い★返\\1",inselect,regular; replaceallfast "[追お]い[込こ]\\f[まみむめもん]\\f","追い★込\\1",inselect,regular; replaceallfast "[追お]い[出だ]\\f[さしすせそ]\\f","追い★出\\1",inselect,regular; replaceallfast "[追お]い[立た]て","追い★立て",inselect,regular; replaceallfast "[追お]い[散ち]ら","追い★散ら",inselect,regular; replaceallfast "[追お]い[抜ぬ]\\f[いかきくけこ]\\f","追い★抜\\1",inselect,regular; replaceallfast "[追お]いはら\\f[いうえおっ]\\f","追い★払\\1",inselect,regular; replaceallfast "おい払\\f[いうえおっ]\\f","追い★払\\1",inselect,regular; replaceallfast "[追お]いもとめ","追い★求め",inselect,regular; replaceallfast "おい求め","追い★求め",inselect,regular; //(起き|おき)(上がる|あがる|出す|だす|直る|なおる)→起き★(上がる|出す|直る) replaceallfast "[起お]き[上あ]が","起き★上が",inselect,regular; replaceallfast "[起お]き[出だ]\\f[さしすせそ]\\f","起き★出\\1",inselect,regular; replaceallfast "[起お]きなお\\f[さしすせそらりるれろっ]\\f","起き★直\\1",inselect,regular; replaceallfast "おき直\\f[さしすせそらりるれろっ]\\f","起き★直\\1",inselect,regular; //(置き|おき)(換える|かえる|忘れる|わすれる)→置き★(換える|忘れ) replaceallfast "[置お]き[換か]\\f[えわ]\\f","置き★換\\1",inselect,regular; replaceallfast "[置お]きわすれ","置き忘れ★",inselect,regular; replaceallfast "おき忘れ","置き忘れ★",inselect,regular; //(送り|おくり)(返す|かえす|込む|こむ|出す|だす|付ける|つける)→送り★(返す|込む|出す|付ける) replaceallfast "送りかえ\\f[さしすせそ]\\f","送り★返\\1",inselect,regular; replaceallfast "送り返す\\f[さしすせそ]\\f","送り★返\\1",inselect,regular; replaceallfast "送りこ\\f[まみむめもん]\\f","送り★込\\1",inselect,regular; replaceallfast "送りだ\\f[さしすせそ]\\f","送り★出\\1",inselect,regular; replaceallfast "送りつけ","送り★付け",inselect,regular; //(押し|おし)(合う|あう|上げる|あげる|当てる|あてる|入る|いる|入れる|いれる|返す|かえす|切る|きる|込む|こむ|下げる|さげる|倒す|たおす|出す|だす|立てる|たてる|戻す|もどす|寄せる|よせる)→押し★(合う|上げる|当てる|入る|入れる|返す|切る|込む|下げる|倒す|出す|立てる|戻す|寄せる) replaceallfast "[押お]し[合あ]\\f[いうえおっ]\\f","押し★合\\1",inselect,regular; replaceallfast "[押お]し[上あ]げ","押し★上げ",inselect,regular; replaceallfast "[押お]し[入い]\\f[らりるれろっ]\\f","押し★入\\1",inselect,regular; replaceallfast "[押お]しかえ\\f[さしすせそ]\\f","押し★返\\1",inselect,regular; replaceallfast "おし返\\f[さしすせそ]\\f","押し★返\\1",inselect,regular; replaceallfast "[押お]し[切き]\\f[らりるれろっ]\\f","押し★切\\1",inselect,regular; replaceallfast "[押お]し[込こ]\\f[まみむめもん]\\f","思い★込\\1",inselect,regular; replaceallfast "[押お]し[下さ]げ","押し★下げ",inselect,regular; replaceallfast "[押お]したお\\f[さしすせそ]\\f","押し★倒\\1",inselect,regular; replaceallfast "おし倒\\f[さしすせそ]\\f","押し★倒\\1",inselect,regular; replaceallfast "[押お]し[立た]て","押し★立て",inselect,regular; replaceallfast "[押お]しもど\\f[さしすせそ]\\f","押し★戻\\1",inselect,regular; replaceallfast "おし戻\\f[さしすせそ]\\f","押し★戻\\1",inselect,regular; replaceallfast "[押お]し[寄よ]せ","押し★寄せ",inselect,regular; //(推し|おし)(進める|すすめる|量る|はかる)→推し(進める|量る)★ replaceallfast "[推お]しすすめ","推し進め★",inselect,regular; replaceallfast "[推お]しはか\\f[らりるれろっ]\\f","推し量★\\1",inselect,regular; //(落ち|おち)(合う|あう|込む|こむ|着く|つく)→落ち★(合う|込む|着く) replaceallfast "[落お]ち[合あ]\\f[いうえおっ]\\f","落ち★合\\1",inselect,regular; replaceallfast "[落お]ち[込こ]\\f[まみむめもん]\\f","落ち★込\\1",inselect,regular; replaceallfast "[落お]ち[着つ]\\f[いかきくけこ]\\f","落ち★着\\1",inselect,regular; //(思い|想い)(上がる|あがる|入れる|いれる|浮かぶ|うかぶ|起こす|おこす|返す|かえす|切る|きる|込む|こむ|知る|しる|出す|だす|立つ|たつ|直す|なおす)→(思い|想い)★(上がる|入れる|浮かぶ|起こす|返す|切る|込む|知る|出す|立つ|直す) replaceallfast "\\f[思想]\\fい[上あ]が","\\1★い上が",inselect,regular; replaceallfast "おもい[上あ]が","思★い上が",inselect,regular; replaceallfast "\\f[思想]\\fい[入い]れ","\\1★い入れ",inselect,regular; replaceallfast "おもい[入い]れ","思★い入れ",inselect,regular; replaceallfast "\\f[思想]\\fい[浮う]か","\\1★い浮か",inselect,regular; replaceallfast "おもい[浮う]か","思★い浮か",inselect,regular; replaceallfast "\\f[思想]\\fい[起お]こ\\f[さしすせそ]\\f","\\1★い起こ\\3",inselect,regular; replaceallfast "おもい[起お]こ\\f[さしすせそ]\\f","思★い起こ\\3",inselect,regular; replaceallfast "\\f[思想]\\fいかえ\\f[さしすせそ]\\f","\\1★い返\\3",inselect,regular; replaceallfast "おもい返\\f[さしすせそ]\\f","思★い返\\3",inselect,regular; replaceallfast "\\f[思想]\\fい[切き]\\f[らりるれろっ]\\f","\\1★い切\\3",inselect,regular; replaceallfast "おもい[切き]\\f[らりるれろっ]\\f","思★い切\\3",inselect,regular; replaceallfast "\\f[思想]\\fい[込こ]\\f[まみむめもん]\\f","\\1★い込\\3",inselect,regular; replaceallfast "おもい[込こ]\\f[まみむめもん]\\f","思★い込\\3",inselect,regular; replaceallfast "\\f[思想]\\fい[知し]\\f[らりるれろっ]\\f","\\1★い知\\3",inselect,regular; replaceallfast "おもい[知し]\\f[らりるれろっ]\\f","思★い知\\3",inselect,regular; replaceallfast "\\f[思想]\\fい[出だ]\\f[さしすせそ]\\f","\\1★い出\\3",inselect,regular; replaceallfast "おもい[出だ]\\f[さしすせそ]\\f","思★い出\\3",inselect,regular; replaceallfast "\\f[思想]\\fい[立た]\\f[たちつてとっ]\\f","\\1★い立\\3",inselect,regular; replaceallfast "おもい[立た]\\f[たちつてとっ]\\f","思★い立\\3",inselect,regular; replaceallfast "\\f[思想]\\fいなお\\f[さしすせそ]\\f","\\1★い直\\3",inselect,regular; replaceallfast "おもい直\\f[さしすせそ]\\f","思★い直\\3",inselect,regular; //(折り|おり)(合う|あう|返す|かえす|重なる|かさなる|重ねる|かさねる|込む|こむ|畳む|たたむ|曲がる|まがる|曲げる|まげる)→折り★(合う|返す|重なる|重ねる|込む|畳む|曲がる|曲げる) replaceallfast "[折お]り[合あ]\\f[いうえおわっ]\\f","折り★合\\1",inselect,regular; replaceallfast "[折お]りかえ\\f[さしすせそ]\\f","折り★返\\1",inselect,regular; replaceallfast "おり返\\f[さしすせそ]\\f","折り★返\\1",inselect,regular; replaceallfast "[折お]りかさ\\f[なね]\\f","折り★重\\1",inselect,regular; replaceallfast "おり重\\f[なね]\\f","折り★重\\1",inselect,regular; replaceallfast "[折お]り[込こ]\\f[まみむめもん]\\f","折り★込\\1",inselect,regular; replaceallfast "[折お]りたた\\f[まみむめもん]\\f","折り★畳\\1",inselect,regular; replaceallfast "おり畳\\f[まみむめもん]\\f","折り★畳\\1",inselect,regular; replaceallfast "[折お]り[曲ま]\\f[がげ]\\f","折り★曲\\1",inselect,regular; //(織り|おり)(上げる|あげる|込む|こむ)→織り★(上げる|込む) replaceallfast "[織お]り[上あ]げ","織り★上げ",inselect,regular; replaceallfast "[織お]り[込こ]\\f[まみむめもん]\\f","織り★込\\1",inselect,regular; //(買い|かい)(上げる|あげる|入れる|いれる|受ける|うける|切る|きる|込む|こむ|出す|だす|直す|なおす|戻す|もどす)→買い★(上げる|入れる|受ける|切る|込む|出す|直す|戻す) replaceallfast "[買か]い[上あ]げ","買い★上げ",inselect,regular; replaceallfast "[買か]い[入い]れ","買い★入れ",inselect,regular; replaceallfast "[買か]い[受う]け","買い★受け",inselect,regular; replaceallfast "[買か]い[切き]\\f[らりるれろっ]\\f","買い★切\\1",inselect,regular; replaceallfast "[買か]い[込こ]\\f[まみむめもん]\\f","買い★込\\1",inselect,regular; replaceallfast "[買か]い[出だ]\\f[さしすせそ]\\f","買い★出\\1",inselect,regular; replaceallfast "[買か]いなお\\f[さしすせそ]\\f","買い★直\\1",inselect,regular; replaceallfast "かい直\\f[さしすせそ]\\f","買い★直\\1",inselect,regular; replaceallfast "[買か]いもど\\f[さしすせそ]\\f","買い★戻\\1",inselect,regular; replaceallfast "かい戻\\f[さしすせそ]\\f","買い★戻\\1",inselect,regular; //(書き|かき)(上がる|あがる|上げる|あげる|入れる|いれる|写す|うつす|送る|おくる|起こす|おこす|落とす|おとす|換える|かえる|切る|きる|込む|こむ|出す|だす|散らす|ちらす|継ぐ|つぐ|尽くす|つくす|付ける|つける|飛ばす|とばす|取る|とる|直す|なおす|残す|のこす|分ける|わける|忘れる|わすれる)→書き★(上がる|上げる|入れる|写す|送る|起こす|落とす|換える|切る|込む|出す|散らす|継ぐ|尽くす|付ける|飛ばす|取る|直す|残す|分ける|忘れる) replaceallfast "[書か]き[上あ]\\f[がげ]\\f","書き★上\\1",inselect,regular; replaceallfast "[書か]き[入い]れ","書き★入れ",inselect,regular; replaceallfast "[書か]きうつ\\f[さしすせそ]\\f","書き写★\\1",inselect,regular; replaceallfast "かき写\\f[さしすせそ]\\f","書き写★\\1",inselect,regular; replaceallfast "[書か]きおく\\f[らりるれろっ]\\f","書き★送\\1",inselect,regular; replaceallfast "かき送\\f[らりるれろっ]\\f","書き★送\\1",inselect,regular; replaceallfast "[書か]き[起お]こ","書き★起こ",inselect,regular; replaceallfast "[書か]き[落お]と","書き★落と",inselect,regular; replaceallfast "[書か]き[換か]え","書き★換え",inselect,regular; replaceallfast "[書か]き[切き]\\f[らりるれろっ]\\f","書き★切\\1",inselect,regular; replaceallfast "[書か]き[込こ]\\f[まみむめもん]\\f","書き★込\\1",inselect,regular; replaceallfast "[書か]き[出だ]\\f[さしすせそ]\\f","書き★出\\1",inselect,regular; replaceallfast "[書か]き[散ち]ら","書き★散ら",inselect,regular; replaceallfast "[書か]き[継つ]\\f[いがきぐげご]\\f","書き★継\\1",inselect,regular; replaceallfast "[書か]き[尽つ]く","書き★尽く",inselect,regular; replaceallfast "[書か]き[付つ]け","書き★付け",inselect,regular; replaceallfast "[書か]き[飛と]ば","書き★飛ば",inselect,regular; replaceallfast "[書か]き[取と]\\f[らりるれろっ]\\f","書き★取\\1",inselect,regular; replaceallfast "[書か]きなお\\f[さしすせそ]\\f","書き★直\\1",inselect,regular; replaceallfast "かき直\\f[さしすせそ]\\f","書き★直\\1",inselect,regular; replaceallfast "[書か]きのこ\\f[さしすせそ]\\f","書き★残\\1",inselect,regular; replaceallfast "かき残\\f[さしすせそ]\\f","書き★残\\1",inselect,regular; replaceallfast "[書か]き[分わ]け","書き★分け",inselect,regular; replaceallfast "[書か]きわすれ","書き★忘れ",inselect,regular; replaceallfast "かき忘れ","書き★忘れ",inselect,regular; //(聞き|きき)(入る|いる|入れる|いれる|返す|かえす|込む|こむ|出す|だす|取る|とる|逃す|のがす|分ける|わける)→聞き★(入る|入れる|返す|込む|出す|取る|逃す|分ける) replaceallfast "[聞き]き[入い]\\f[るれっ]\\f","聞き★入\\1",inselect,regular; replaceallfast "[聞き]き[落お]と","聞き★落と",inselect,regular; replaceallfast "[聞き]きかえ\\f[さしすせそ]\\f","聞き★返\\1",inselect,regular; replaceallfast "きき返\\f[さしすせそ]\\f","聞き★返\\1",inselect,regular; replaceallfast "[聞き]き[込こ]\\f[まみむめもん]\\f","聞き★込\\1",inselect,regular; replaceallfast "[聞き]き[出だ]\\f[さしすせそ]\\f","聞き★出\\1",inselect,regular; replaceallfast "[聞き]きちがえ","聞き★違え",inselect,regular; replaceallfast "きき違え","聞き★違え",inselect,regular; replaceallfast "[聞き]き[取と]\\f[らりるれろっ]\\f","聞き★取\\1",inselect,regular; replaceallfast "[聞き]きなが\\f[さしすせそ]\\f","聞き★流\\1",inselect,regular; replaceallfast "きき流\\f[さしすせそ]\\f","聞き★流\\1",inselect,regular; replaceallfast "[聞き]きのが\\f[さしすせそ]\\f","聞き★逃\\1",inselect,regular; replaceallfast "きき逃\\f[さしすせそ]\\f","聞き★逃\\1",inselect,regular; replaceallfast "[聞き]き[分わ]け","聞き★分け",inselect,regular; //(切り|きり)(上げる|あげる|返す|かえす|替える|かえる|替わる|かわる|刻む|きざむ|込む|こむ|裂く|さく|下げる|さげる|捨てる|すてる|倒す|たおす|出す|だす|取る|とる|抜く|ぬく|離す|はなす|開く|ひらく|分ける|わける)→切り★(上げる|返す|替える|替わる|刻む|込む|裂く|下げる|捨てる|倒す|出す|取る|抜く|離す|開く|分ける) replaceallfast "[切き]り[上あ]げ","切り★上げ",inselect,regular; replaceallfast "[切き]りかえ\\f[さしすせそ]\\f","切り★返\\1",inselect,regular; replaceallfast "きり返\\f[さしすせそ]\\f","切り★返\\1",inselect,regular; replaceallfast "[切き]り[替か]\\f[えわ]\\f","切り★替\\1",inselect,regular; replaceallfast "[切き]りきざ\\f[まみむめもん]\\f","切り★刻\\1",inselect,regular; replaceallfast "きり刻\\f[まみむめもん]\\f","切り★刻\\1",inselect,regular; replaceallfast "[切き]り[込こ]\\f[まみむめもん]\\f","切り★込\\1",inselect,regular; replaceallfast "[切き]り[裂さ]\\f[かきくけこ]\\f","切り★裂\\1",inselect,regular; replaceallfast "[切き]り[下さ]げ","切り★下げ",inselect,regular; replaceallfast "[切き]り[捨す]て","切り★捨て",inselect,regular; replaceallfast "[切き]りたお\\f[さしすせそ]\\f","切り★倒\\1",inselect,regular; replaceallfast "きり倒\\f[さしすせそ]\\f","切り★倒\\1",inselect,regular; replaceallfast "[切き]り[出だ]\\f[さしすせそ]\\f","切り★出\\1",inselect,regular; replaceallfast "[切き]り[取と]\\f[らりるれろっ]\\f","切り★取\\1",inselect,regular; replaceallfast "[切き]り[抜ぬ]\\f[いかきくけこ]\\f","切り★抜\\1",inselect,regular; replaceallfast "[切き]りはな\\f[さしすせそ]\\f","切り★離\\1",inselect,regular; replaceallfast "きり離\\f[さしすせそ]\\f","切り★離\\1",inselect,regular; replaceallfast "[切き]りひら\\f[いかきくけこ]\\f","切り★開\\1",inselect,regular; replaceallfast "きり開\\f[いかきくけこ]\\f","切り★開\\1",inselect,regular; replaceallfast "[切き]り[分わ]け","切り★分け",inselect,regular; //(食い|くい)(合う|あう|込む|こむ|下がる|さがる|散らす|ちらす|止める|とめる)→食い★(合う|込む|下がる|散らす|止める) replaceallfast "[食く]い[合あ]\\f[いうえおわっ]\\f","食い★合\\1",inselect,regular; replaceallfast "[食く]い[込こ]\\f[まみむめもん]\\f","食い★込\\1",inselect,regular; replaceallfast "[食く]い[下さ]が","食い★下が",inselect,regular; replaceallfast "[食く]い[散ち]ら","食く★散ら",inselect,regular; replaceallfast "[食く]い[止と]め","食い★止め",inselect,regular; //(朽ち|くち)(果てる|はてる)→朽ち果てる★ replaceallfast "[朽く]ち[果は]て","朽ち果て★",inselect,regular; //(組み|くみ)(合う|あう|合わせる|あわせる|上がる|あがる|上げる|あげる|入れる|いれる|替える|かえる|込む|こむ|敷く|しく|立てる|たてる|戻す|もどす)→組み★(合う|合わせる|上がる|上げる|入れる|替える|込む|敷く|立てる|戻す) replaceallfast "[組く]\\fみ\\f[合あ]\\f[いうえおわっ]\\f","組み★合\\1",inselect,regular; replaceallfast "[組く]み[上あ]\\f[がげ]\\f","組み★上\\1",inselect,regular; replaceallfast "[組く]み[入い]れ","組み★入れ",inselect,regular; replaceallfast "[組く]み[替か]\\f[えわ]\\f","組み★替\\1",inselect,regular; replaceallfast "[組く]み[込こ]\\f[まみむめもん]\\f","組み★込\\1",inselect,regular; replaceallfast "[組く]み[敷し]\\f[いかきくけこ]\\f","組み★敷\\1",inselect,regular; replaceallfast "[組く]み[立た]\\f[たてっ]\\f","組み★立\\1",inselect,regular; replaceallfast "[組く]みもど\\f[さしすせそ]\\f","組み★戻\\1",inselect,regular; replaceallfast "くみ戻\\f[さしすせそ]\\f","組み★戻\\1",inselect,regular; //(汲み|くみ)(上げる|あげる|尽くす|つくす|取る|とる)→汲み★(上げる|尽くす|取る) replaceallfast "[汲く]み[上あ]\\f[がげ]\\f","汲み★上\\1",inselect,regular; replaceallfast "[汲く]み[尽つ]く\\f[さしすせそ]\\f","汲み★尽く\\1",inselect,regular; replaceallfast "[汲く]み[取と]\\f[らりるれろっ]\\f","汲み★取\\1",inselect,regular; //(繰り|くり)(上がる|あがる|上げる|あげる|入れる|いれる|返す|かえす|越す|こす|込む|こむ|下がる|さがる|下げる|さげる|出す|だす)→繰り★(上がる|上げる|入れる|返す|越す|込む|下がる|下げる|出す) replaceallfast "[繰く]り[上あ]\\f[がげ]\\f","繰り★上\\1",inselect,regular; replaceallfast "[繰く]り[入い]れ","繰り★入れ",inselect,regular; replaceallfast "[繰く]りかえ\\f[さしすせそ]\\f","繰り★返\\1",inselect,regular; replaceallfast "くり返\\f[さしすせそ]\\f","繰り★返\\1",inselect,regular; replaceallfast "[繰く]り[越こ]\\f[さしすせそ]\\f","繰り★越\\1",inselect,regular; replaceallfast "[繰く]り[込こ]\\f[まみむめもん]\\f","繰り★込\\1",inselect,regular; replaceallfast "[繰く]り[下さ]\\f[がげ]\\f","繰り★下\\1",inselect,regular; replaceallfast "[繰く]り[出だ]\\f[さしすせそ]\\f","繰り★出\\1",inselect,regular; //(消し|けし)(去る|さる|止める|とめる)→消し★(去る|止める) replaceallfast "[消け]し[去さ]\\f[らりるれろっ]\\f","消し★去\\1",inselect,regular; replaceallfast "[消け]し[止と]め","消し★止め",inselect,regular; //(探し|さがし)(出す|だす|求める|もとめる)→探し★(出す|求める) replaceallfast "探し[出だ]\\f[さしすせそ]\\f","探し★出\\2",inselect,regular; replaceallfast "さがし[出だ]\\f[さしすせそ]\\f","探し★出\\2",inselect,regular; replaceallfast "探しもとめ","探し★求め",inselect,regular; replaceallfast "さがし求め","探し★求め",inselect,regular; replaceallfast "さがしもとめ","探し★求め",inselect,regular; //(差し|さし)(上げる|あげる|入れる|いれる|替える|かえる|込む|こむ|出す|だす|止める|とめる|戻す|もどす)→差し★(上げる|入れる|替える|込む|出す|止める|戻す) replaceallfast "[差さ]し[上あ]げ","差し★上げ",inselect,regular; replaceallfast "[差さ]し[入い]れ","差し★入れ",inselect,regular; replaceallfast "[差さ]し[替か]え","差し★替え",inselect,regular; replaceallfast "[差さ]し[込こ]\\f[まみむめもん]\\f","差し★込\\1",inselect,regular; replaceallfast "[差さ]し[出だ]\\f[さしすせそ]\\f","差し★出\\1",inselect,regular; replaceallfast "[差さ]し[止と]め","差し★止め",inselect,regular; replaceallfast "[差さ]しもど\\f[さしすせそ]\\f","差し★戻\\1",inselect,regular; replaceallfast "さし戻\\f[さしすせそ]\\f","差し★戻\\1",inselect,regular; //(締め|しめ)(上げる|あげる|切る|きる|殺す|ころす|出す|だす)→締め★(上げる|切る|殺す|出す) replaceallfast "[締し]め[上あ]げ","締め★上げ",inselect,regular; replaceallfast "[締し]め[切き]\\f[らりるれろっ]\\f","締め★切\\1",inselect,regular; replaceallfast "[締し]めころ\\f[さしすせそ]\\f","締め★殺\\1",inselect,regular; replaceallfast "しめ殺\\f[さしすせそ]\\f","締め★殺\\1",inselect,regular; replaceallfast "[締し]め[出だ]\\f[さしすせそ]\\f","締め★出\\1",inselect,regular; //(知り|しり)(合う|あう|抜く|ぬく|)→知り★(合う|抜く) replaceallfast "[知し]り[合あ]\\f[いうえおわっ]\\f","知り★合\\1",inselect,regular; replaceallfast "[知し]り[抜ぬ]\\f[いく]\\f","知り★抜\\1",inselect,regular; //(救い|すくい)(上げる|あげる|出す|だす)→救い★(上げる|出す) replaceallfast "救い[上あ]げ","救い★上げ",inselect,regular; replaceallfast "すくい[上あ]げ","救い★上げ",inselect,regular; replaceallfast "救い[出だ]\\f[さしすせそ]\\f","救い★出\\2",inselect,regular; replaceallfast "すくい[出だ]\\f[さしすせそ]\\f","救い★出\\2",inselect,regular; //(出し|だし)(合う|あう|切る|きる|尽くす|つくす|抜く|ぬく)→出し★(合う|切る|尽くす|抜く) replaceallfast "[出だ]し[合あ]\\f[いうえおっ]\\f","出し★合\\1",inselect,regular; replaceallfast "[出だ]し[切き]\\f[らりるれろっ]\\f","出し★切\\1",inselect,regular; replaceallfast "[出だ]し[尽つ]く\\f[さしすせそ]\\f","出し★尽く\\1",inselect,regular; replaceallfast "[出だ]し[抜ぬ]\\f[いかきくけこ]\\f","出し★抜\\1",inselect,regular; //(立ち|たち)(会う|あう|上がる|あがる|上げる|あげる|入る|いる|去る|さる|止まる|どまる|直る|なおる|並ぶ|ならぶ|昇る|のぼる|戻る|もどる)→立ち★(会う|上がる|上げる|入る|去る|止まる|直る|並ぶ|昇る|戻る) replaceallfast "[立た]\\fち\\f[会あ]\\f[いうえおっ]\\f","立ち★会\\1",inselect,regular; replaceallfast "[立た]ち[上あ]\\f[がげ]\\f","立ち★上\\1",inselect,regular; replaceallfast "[立た]ち[入い]\\f[らりるれろっ]\\f","立ち★入\\1",inselect,regular; replaceallfast "[立た]ち[去さ]\\f[らりるれろっ]\\f","立ち★去\\1",inselect,regular; replaceallfast "[立た]ち[止ど]ま","立ち★止ま",inselect,regular; replaceallfast "[立た]ちなお\\f[らりるれろっ]\\f","立ち★直\\1",inselect,regular; replaceallfast "たち直\\f[らりるれろっ]\\f","立ち★直\\1",inselect,regular; replaceallfast "[立た]ちなら\\f[ばびぶべぼん]\\f","立ち★並\\1",inselect,regular; replaceallfast "たち並\\f[ばびぶべぼん]\\f","立ち★並\\1",inselect,regular; replaceallfast "[立た]ちのぼ\\f[らりるれろっ]\\f","立ち★昇\\1",inselect,regular; replaceallfast "たち昇\\f[らりるれろっ]\\f","立ち★昇\\1",inselect,regular; replaceallfast "[立た]ちもど\\f[らりるれろっ]\\f","立ち★戻\\1",inselect,regular; replaceallfast "たち戻\\f[らりるれろっ]\\f","立ち★戻\\1",inselect,regular; //(垂れ|たれ)(込む|こむ|流す|ながす)→垂れ★(込む|流す) replaceallfast "[垂た]れ[込こ]\\f[まみむめもん]\\f","垂れ★込\\1",inselect,regular; replaceallfast "[垂た]れなが\\f[さしすせそ]\\f","垂れ★流\\1",inselect,regular; replaceallfast "たれ流\\f[さしすせそ]\\f","垂れ★流\\1",inselect,regular; //(突き|つき)(合う|あう|上げる|あげる|入れる|いれる|起こす|おこす|返す|かえす|崩す|くずす|殺す|ころす|刺す|さす|倒す|たおす|出す|だす|立てる|たてる|詰める|つめる|出る|でる|通す|とおす|止める|とめる|抜ける|ぬける|放す|はなす|破る|やぶる)→突き★(合う|上げる|入れる|起こす|返す|殺す|刺す|倒す|出す|立てる|詰める|出る|通す|止める|抜ける|放す|破る) //(突っ|つっ)(込む|こむ|張る|ぱる)→突っ(込む|張る) replaceallfast "[突つ]き[合あ]\\f[いうえおっ]\\f","突き★合\\1",inselect,regular; replaceallfast "[突つ]き[上あ]げ","突き★上げ",inselect,regular; replaceallfast "[突つ]き[入い]\\f[らりるれろっ]\\f","立ち★入\\1",inselect,regular; replaceallfast "[突つ]き[起お]こ","突き★起こ",inselect,regular; replaceallfast "[突つ]きかえ\\f[さしすせそ]\\f","突き★返\\1",inselect,regular; replaceallfast "つき返\\f[さしすせそ]\\f","突き★返\\1",inselect,regular; replaceallfast "[突つ]きくず\\f[さしすせそ]\\f","突き崩★\\1",inselect,regular; replaceallfast "つき崩\\f[さしすせそ]\\f","突き崩★\\1",inselect,regular; replaceallfast "[突つ]きころ\\f[さしすせそ]\\f","突き★殺\\1",inselect,regular; replaceallfast "つき殺\\f[さしすせそ]\\f","突き★殺\\1",inselect,regular; replaceallfast "[突つ]き[刺さ]\\f[さしすせそっ]\\f","突き★刺\\1",inselect,regular; replaceallfast "[突つ]きたお\\f[さしすせそ]\\f","突き★倒\\1",inselect,regular; replaceallfast "つき倒\\f[さしすせそ]\\f","突き★倒\\1",inselect,regular; replaceallfast "[突つ]き[出だで]\\f[さしすせそたてる]\\f","突き★出\\1",inselect,regular; replaceallfast "[突つ]き[立た]\\f[ちつてっ]\\f","突き★立\\1",inselect,regular; replaceallfast "[突つ]き[詰つ]め","突き詰め★",inselect,regular; replaceallfast "[突つ]き[出で]\\f[たてる]\\f","突き出★\\1",inselect,regular; replaceallfast "[突つ]きとお\\f[さしすせそ]\\f","突き★通\\1",inselect,regular; replaceallfast "つき通\\f[さしすせそ]\\f","突き★通\\1",inselect,regular; replaceallfast "[突つ]き[止と]め","突き★止め",inselect,regular; replaceallfast "[突つ]き[抜ぬ]\\f[いかきくけこ]\\f","突き★抜\\1",inselect,regular; replaceallfast "[突つ]きはな\\f[さしすせそ]\\f","突き放★\\1",inselect,regular; replaceallfast "つき放\\f[さしすせそ]\\f","突き放★\\1",inselect,regular; replaceallfast "[突つ]きやぶ\\f[らりるれろっ]\\f","突き★破\\1",inselect,regular; replaceallfast "つき破\\f[らりるれろっ]\\f","突き★破\\1",inselect,regular; replaceallfast "[突つ]っ[込こ]\\f[まみむめもん]\\f","突っ★込\\1",inselect,regular; replaceallfast "[突つ]っ[張ぱ]\\f[らりるれろっ]\\f","突っ★張\\1",inselect,regular; //(積み|つみ)(上げる|あげる|下ろす|おろす|重なる|かさなる|重ねる|かさねる|込む|こむ|出す|だす|立てる|たてる|直す|なおす|残す|のこす|戻す|もどす)→積み★(上げる|下ろす|重なる|重ねる|込む|出す|立てる|直す|残す|戻す) replaceallfast "[積つ]み[上あ]げ","積み★上げ",inselect,regular; replaceallfast "[積つ]み[下お]ろ","積み★下ろ",inselect,regular; replaceallfast "[積つ]みかさ\\f[なね]\\f","積み★重\\1",inselect,regular; replaceallfast "つみ重\\f[なね]\\f","積み★重\\1",inselect,regular; replaceallfast "[積つ]み[込こ]\\f[まみむめもん]\\f","積み★込\\1",inselect,regular; replaceallfast "[積つ]み[出だ]\\f[さしすせそ]\\f","積み★出\\1",inselect,regular; replaceallfast "[積つ]み[立た]て","積み★立て",inselect,regular; replaceallfast "[積つ]みなお\\f[さしすせそ]\\f","積み★直\\1",inselect,regular; replaceallfast "つみ直\\f[さしすせそ]\\f","積み★直\\1",inselect,regular; replaceallfast "[積つ]みのこ\\f[さしすせそっ]\\f","積み★残\\1",inselect,regular; replaceallfast "つみ残\\f[さしすせそっ]\\f","積み★残\\1",inselect,regular; replaceallfast "[積つ]みもど\\f[さしすせそ]\\f","積み★戻\\1",inselect,regular; replaceallfast "つみ戻\\f[さしすせそ]\\f","積み★戻\\1",inselect,regular; //(連れ|つれ)(帰る|かえる|込む|こむ|去る|さる|出す|だす|戻す|もどす)→連れ★(帰る|込む|去る|出す|戻す) replaceallfast "[連つ]れかえ\\f[らりるれろっ]\\f","連れ★帰\\1",inselect,regular; replaceallfast "つれ帰\\f[らりるれろっ]\\f","連れ★帰\\1",inselect,regular; replaceallfast "[連つ]れ[込こ]\\f[まみむめもん]\\f","連れ★込\\1",inselect,regular; replaceallfast "[連つ]れ[去さ]\\f[らりるれろっ]\\f","連れ★去\\1",inselect,regular; replaceallfast "[連つ]れ[出だ]\\f[さしすせそ]\\f","連れ★出\\1",inselect,regular; replaceallfast "[連つ]れもど\\f[さしすせそらりるれろっ]\\f","連れ★戻\\1",inselect,regular; replaceallfast "つれ戻\\f[さしすせそらりるれろっ]\\f","連れ★戻\\1",inselect,regular; //(問い|とい)(合わせる|あわせる|返す|かえす|詰める|つめる|直す|なおす)→問い★(合わせる|返す|詰める|直す) replaceallfast "[問と]い\\f[合あ]わ","問い★合わ",inselect,regular; replaceallfast "[問と]いかえ\\f[さしすせそ]\\f","問い★返\\1",inselect,regular; replaceallfast "とい返\\f[さしすせそ]\\f","問い★返\\1",inselect,regular; replaceallfast "[問と]い[詰つ]め","問い詰め★",inselect,regular; replaceallfast "[問と]いなお\\f[さしすせそ]\\f","問い★直\\1",inselect,regular; replaceallfast "とい直\\f[さしすせそ]\\f","問い★直\\1",inselect,regular; //(通り|とおり)(過ぎる|すぎる|抜ける|ぬける)→通り★(過ぎる|抜ける) replaceallfast "通り[過す]ぎ","通り過ぎ★",inselect,regular; replaceallfast "とおり[過す]ぎ","通り過ぎ★",inselect,regular; replaceallfast "通り[抜ぬ]け","通り抜け★",inselect,regular; replaceallfast "とおり[抜ぬ]け","通り抜け★",inselect,regular; //(閉じ|とじ)(込める|こめる)→閉じ★込める replaceallfast "[閉と]じ[込こ]め","閉じ★込め",inselect,regular; //(飛び|とび)(上がる|あがる|移る|うつる|降りる|おりる|交う|かう|越す|こす|込む|こむ|去る|さる|出す|だす|立つ|たつ)→飛び★(上がる|移る|降りる|交う|越す|込む|去る|出す|立つ) replaceallfast "[飛と]び[上あ]が","飛び★上が",inselect,regular; replaceallfast "[飛と]びうつ\\f[らりるれろっ]\\f","飛び★移\\1",inselect,regular; replaceallfast "とび移\\f[らりるれろっ]\\f","飛び★移\\1",inselect,regular; replaceallfast "[飛と]び[降お]り","飛び★降り",inselect,regular; replaceallfast "[飛と]び[交か]\\f[いうえっ]\\f","飛び★交\\1",inselect,regular; replaceallfast "[飛と]び[越こ]\\f[えさしすせそ]\\f","飛び★越\\1",inselect,regular; replaceallfast "[飛と]び[込こ]\\f[まみむめもん]\\f","飛び★込\\1",inselect,regular; replaceallfast "[飛と]び[去さ]\\f[らりるれろっ]\\f","飛び★去\\1",inselect,regular; replaceallfast "[飛と]び[出だ]\\f[さしすせそ]\\f","飛び★出\\1",inselect,regular; replaceallfast "[飛と]び[立た]\\f[たちつてとっ]\\f","飛び★立\\1",inselect,regular; //(取り|とり)(合う|あう|上げる|あげる|扱う|あつかう|入れる|いれる|返す|かえす|替える|かえる|囲む|かこむ|決める|きめる|崩す|くずす|組む|くむ|込む|こむ|壊す|こわす|下げる|さげる|去る|さる|締まる|しまる|揃える|そろえる|出す|だす|立てる|たてる|違える|ちがえる|付ける|つける|残す|のこす|除く|のぞく|外す|はずす|払う|はらう|巻く|まく|持つ|もつ|戻す|もどす|止める|やめる|寄せる|よせる)→取り★(合う|上げる|扱う|入れる|返す|替える|囲む|決める|崩す|組む|込む|壊す|下げる|去る|締まる|揃える|出す|立てる|違える|付ける|残す|除く|外す|払う|巻く|持つ|戻す|止める|寄せる) replaceallfast "[取と]り[合あ]\\f[いうえおっ]\\f","取り★合\\1",inselect,regular; replaceallfast "[取と]り[上あ]げ","取り★上げ",inselect,regular; replaceallfast "[取と]りあつか\\f[いうえおっ]\\f","取り★扱\\1",inselect,regular; replaceallfast "とり扱\\f[いうえおっ]\\f","取り★扱\\1",inselect,regular; replaceallfast "[取と]り[入い]\\f[りるれろっ]\\f","取り★入\\1",inselect,regular; replaceallfast "[取と]りかえ\\f[さしすせそ]\\f","取り★返\\1",inselect,regular; replaceallfast "とり返\\f[さしすせそ]\\f","取り★返\\1",inselect,regular; replaceallfast "[取と]り[替か]\\f[えわ]\\f","取り★替\\1",inselect,regular; replaceallfast "[取と]りかこ\\f[まみむめもん]\\f","取り★囲\\1",inselect,regular; replaceallfast "とり囲\\f[まみむめもん]\\f","取り★囲\\1",inselect,regular; replaceallfast "[取と]り[決き]\\f[まめ]\\f","取り★決\\1",inselect,regular; replaceallfast "[取と]りくず\\f[さしすせそ]\\f","取り★崩\\1",inselect,regular; replaceallfast "とり崩\\f[さしすせそ]\\f","取り★崩\\1",inselect,regular; replaceallfast "[取と]り[組く]\\f[まみむめもん]\\f","取り★組\\1",inselect,regular; replaceallfast "[取と]り[込こ]\\f[まみむめもん]\\f","取り★込\\1",inselect,regular; replaceallfast "[取と]りこわ\\f[さしすせそ]\\f","取り★壊\\1",inselect,regular; replaceallfast "とり壊\\f[さしすせそ]\\f","取り★壊\\1",inselect,regular; replaceallfast "[取と]り[下さ]げ","取り★下げ",inselect,regular; replaceallfast "[取と]り[締し]\\f[まみむめもん]\\f","取り★締\\1",inselect,regular; replaceallfast "[取と]りそろえ","取り★揃え",inselect,regular; replaceallfast "とり揃え","取り★揃え",inselect,regular; replaceallfast "[取と]り[出だ]\\f[さしすせそ]\\f","取り★出\\1",inselect,regular; replaceallfast "[取と]り[立た]て","取り★立て",inselect,regular; replaceallfast "[取と]りちがえ","取り★違え",inselect,regular; replaceallfast "とり違え","取り★違え",inselect,regular; replaceallfast "[取と]り[付つ]け","取り★付け",inselect,regular; replaceallfast "[取と]りのこ\\f[さしすせそ]\\f","取り★残\\1",inselect,regular; replaceallfast "とり残\\f[さしすせそ]\\f","取り★残\\1",inselect,regular; replaceallfast "[取と]りのぞ\\f[かきくけこ]\\f","取り★除\\1",inselect,regular; replaceallfast "とり除\\f[かきくけこ]\\f","取り★除\\1",inselect,regular; replaceallfast "[取と]りはず\\f[さしすせそ]\\f","取り★外\\1",inselect,regular; replaceallfast "とり外\\f[さしすせそ]\\f","取り★外\\1",inselect,regular; replaceallfast "[取と]りはら\\f[いうえおっ]\\f","取り★払\\1",inselect,regular; replaceallfast "とり払\\f[いうえおっ]\\f","取り★払\\1",inselect,regular; replaceallfast "[取と]り[巻ま]\\f[いかきくけこ]\\f","取り★巻\\1",inselect,regular; replaceallfast "[取と]り[持も]\\f[たちつてとっ]\\f","取り★持\\1",inselect,regular; replaceallfast "[取と]りもど\\f[さしすせそ]\\f","取り★戻\\1",inselect,regular; replaceallfast "とり戻\\f[さしすせそ]\\f","取り★戻\\1",inselect,regular; replaceallfast "[取と]り[止や]め","取り★止め",inselect,regular; replaceallfast "[取と]り[寄よ]せ","取り★寄せ",inselect,regular; //(成し|なし)(遂げる|とげる)→成し★遂げる replaceallfast "[成な]し[遂と]げ","成し★遂げ",inselect,regular; //(成り|なり)(上がる|あがる|下がる|さがる|立つ|たつ)→成り★(上がる|下がる|立つ) replaceallfast "[成な]り[上あ]が","成り★上が",inselect,regular; replaceallfast "[成な]り[下さ]が","成り★下が",inselect,regular; replaceallfast "[成な]り[立た]\\f[たちつっ]\\f","成り★立\\1",inselect,regular; //(鳴り|なり)(轟く|とどろく|響く|ひびく|止む|やむ)→鳴り★(轟く|響く|止む) replaceallfast "[鳴な]りとどろ\\f[いかきくけこ]\\f","鳴り★轟\\1",inselect,regular; replaceallfast "なり轟\\f[いかきくけこ]\\f","鳴り★轟\\1",inselect,regular; replaceallfast "[鳴な]りひび\\f[いかきくけこ]\\f","鳴り★響\\1",inselect,regular; replaceallfast "なり響\\f[いかきくけこ]\\f","鳴り★響\\1",inselect,regular; replaceallfast "[鳴な]り[止や]\\f[まみむめもん]\\f","鳴り★止\\1",inselect,regular; //(逃げ|にげ)(帰る|かえる|込む|こむ|去る|さる|出す|だす|回る|まわる|戻る|もどる)→逃げ★(帰る|込む|去る|出す|回る|戻る) //(逃れ|のがれ)(去る|さる)→逃れ★去る replaceallfast "[逃に]げかえ\\f[らりるれろっ]\\f","逃げ★帰\\1",inselect,regular; replaceallfast "にげ帰\\f[らりるれろっ]\\f","逃げ★帰\\1",inselect,regular; replaceallfast "[逃に]げ[込こ]\\f[まみむめもん]\\f","逃げ★込\\1",inselect,regular; replaceallfast "[逃に]げ[去さ]\\f[らりるれろっ]\\f","逃げ★去\\1",inselect,regular; replaceallfast "[逃に]げ[出だ]\\f[さしすせそ]\\f","逃げ★出\\1",inselect,regular; replaceallfast "[逃に]げまわ\\f[らりるれろっ]\\f","逃げ★回\\1",inselect,regular; replaceallfast "にげ回\\f[らりるれろっ]\\f","逃げ★回\\1",inselect,regular; replaceallfast "[逃に]げもど\\f[らりるれろっ]\\f","逃げ★戻\\1",inselect,regular; replaceallfast "にげ戻\\f[らりるれろっ]\\f","逃げ★戻\\1",inselect,regular; replaceallfast "逃れ[去さ]\\f[らりるれろっ]\\f","逃れ★去\\2",inselect,regular; replaceallfast "のがれ[去さ]\\f[らりるれろっ]\\f","逃れ★去\\2",inselect,regular; //(抜き|ぬき)(出す|だす|取る|とる)→抜き★(出す|取る) //(抜け|ぬけ)(落ちる|おちる|出す|だす|出る|でる)→抜け★(落ちる|出す|出る) replaceallfast "[抜ぬ]け[落お]ち","抜け★落ち",inselect,regular; replaceallfast "[抜ぬ]\\f[きけ]\\f[出だ]\\f[さしすせそ]\\f","抜\\1★出\\3",inselect,regular; replaceallfast "[抜ぬ]け[出で]\\f[よらりるれろ]\\f","抜け★出\\1",inselect,regular; replaceallfast "[抜ぬ]き[取と]\\f[らりるれろっ]\\f","抜き★取\\1",inselect,regular; //(乗り|のり)(上げる|あげる|入れる|いれる|換える|かえる|切る|きる|込む|こむ|出す|だす)→乗り★(上げる|入れる|換える|切る|込む|出す) //(乗っ|のっ)(取る|とる)→乗っ★取る replaceallfast "[乗の]り[上あ]げ","乗り★上げ",inselect,regular; replaceallfast "[乗の]り[入い]れ","乗り★入れ",inselect,regular; replaceallfast "[乗の]り[換か]え","乗り★換え",inselect,regular; replaceallfast "[乗の]り[切き]\\f[らりるれろっ]\\f","乗り★切\\1",inselect,regular; replaceallfast "[乗の]り[込こ]\\f[まみむめもん]\\f","乗り★込\\1",inselect,regular; replaceallfast "[乗の]り[出だ]\\f[さしすせそ]\\f","乗り★出\\1",inselect,regular; replaceallfast "[乗の]っ[取と]\\f[らりるれろっ]\\f","乗っ★取\\1",inselect,regular; //(話し|はなし)(合う|あう|込む|こむ|出す|だす)→話し★(合う|込む|出す) replaceallfast "話し[合あ]\\f[いうえおっ]\\f","話し★合\\1",inselect,regular; replaceallfast "はなし[合あ]\\f[いうえおっ]\\f","話し★合\\1",inselect,regular; replaceallfast "話し[込こ]\\f[まみむめもん]\\f","話し★込\\1",inselect,regular; replaceallfast "はなし[込こ]\\f[まみむめもん]\\f","話し★込\\1",inselect,regular; replaceallfast "話し[出だ]\\f[さしすせそ]\\f","話し★出\\1",inselect,regular; replaceallfast "はなし[出だ]\\f[さしすせそ]\\f","話し★出\\1",inselect,regular; //(張り|はり)(合う|あう|上げる|あげる|切る|きる|込む|こむ|裂ける|さける|倒す|たおす|出す|だす|飛ばす|とばす)→張り★(合う|上げる|切る|込む|裂ける|倒す|出す|飛ばす) replaceallfast "[張は]り[合あ]\\f[いうえおっ]\\f","張り★合\\1",inselect,regular; replaceallfast "[張は]り[上あ]げ","張り★上げ",inselect,regular; replaceallfast "[張は]り[切き]\\f[らりるれろっ]\\f","張り★切\\1",inselect,regular; replaceallfast "[張は]り[込こ]\\f[まみむめもん]\\f","張り★込\\1",inselect,regular; replaceallfast "[張は]り[裂さ]け","張り★裂け",inselect,regular; replaceallfast "[張は]りたお\\f[さしすせそ]\\f","張り★倒\\1",inselect,regular; replaceallfast "はり倒\\f[さしすせそ]\\f","張り★倒\\1",inselect,regular; replaceallfast "[張は]り[出だ]\\f[さしすせそ]\\f","張り★出\\1",inselect,regular; replaceallfast "[張は]り[飛と]ば","張り★飛ば",inselect,regular; //(引き|ひき)(合う|あう|上げる|あげる|合わせる|あわせる|入れる|いれる|受ける|うける|起こす|おこす|落とす|おとす|返す|かえす|込む|こむ|下がる|さがる|下げる|さげる|去る|さる|絞る|しぼる|締める|しめる|倒す|たおす|出す|だす|立つ|たつ|立てる|たてる|継ぐ|つぐ|止める|とめる|取る|とる|抜く|ぬく|伸ばす|のばす|剥がす|はがす|払う|はらう|戻す|もどす|寄せる|よせる|分ける|わける|渡す|わたす)→引き★(合う|上げる|合わせる|入れる|受ける|起こす|落とす|返す|込む|下がる|下げる|去る|絞る|締める|倒す|出す|立つ|立てる|継ぐ|止める|取る|抜く|伸ばす|剥がす|払う|戻す|寄せる|分ける|渡す) //(引っ|ひっ)(込む|こむ|張る|ぱる)→引っ★(込む|張る) replaceallfast "\\f[引ひ]\\fき\\f[合あ]\\f[いうえおわっ]\\f","引き★合\\1",inselect,regular; replaceallfast "[引ひ]き[上あ]げ","引き★上げ",inselect,regular; replaceallfast "[引ひ]き[入い]れ","引き★入れ",inselect,regular; replaceallfast "[引ひ]き[受う]け","引き★受け",inselect,regular; replaceallfast "[引ひ]き[起お]こ","引き★起こ",inselect,regular; replaceallfast "[引ひ]き[落お]と","引き★落と",inselect,regular; replaceallfast "[引ひ]きかえ\\f[さしすせそ]\\f","引き★返\\1",inselect,regular; replaceallfast "ひき返\\f[さしすせそ]\\f","引き★返\\1",inselect,regular; replaceallfast "[引ひ]き[込こ]\\f[まみむめもん]\\f","引き★込\\1",inselect,regular; replaceallfast "[引ひ]き[下さ]\\f[がげ]\\f","引き★下\\1",inselect,regular; replaceallfast "[引ひ]き[去さ]\\f[らりるれろっ]\\f","引き★去\\1",inselect,regular; replaceallfast "[引ひ]きしぼ\\f[らりるれろっ]\\f","引き★絞\\1",inselect,regular; replaceallfast "ひき絞\\f[らりるれろっ]\\f","引き★絞\\1",inselect,regular; replaceallfast "[引ひ]き[締し]\\f[まみむめもん]\\f","引き★締\\1",inselect,regular; replaceallfast "[引ひ]きたお\\f[さしすせそ]\\f","引き★倒\\1",inselect,regular; replaceallfast "ひき倒\\f[さしすせそ]\\f","引き★倒\\1",inselect,regular; replaceallfast "[引ひ]き[出だ]\\f[さしすせそ]\\f","引き★出\\1",inselect,regular; replaceallfast "[引ひ]き[立た]\\f[たちつてとっ]\\f","引き★立\\1",inselect,regular; replaceallfast "[引ひ]き[継つ]\\f[いがきぐげご]\\f","引き★継\\1",inselect,regular; replaceallfast "[引ひ]き[止と]め","引き★止め",inselect,regular; replaceallfast "[引ひ]き[取と]\\f[らりるれろっ]\\f","引き★取\\1",inselect,regular; replaceallfast "[引ひ]き[抜ぬ]\\f[いかきくけこ]\\f","引き★抜\\1",inselect,regular; replaceallfast "[引ひ]き[伸の]ば","引き★伸ば",inselect,regular; replaceallfast "[引ひ]き[剥は]\\f[いがぎぐげご]\\f","引き★剥\\1",inselect,regular; replaceallfast "[引ひ]きはら\\f[いうえおっ]\\f","引き★払\\1",inselect,regular; replaceallfast "ひき払\\f[いうえおっ]\\f","引き★払\\1",inselect,regular; replaceallfast "[引ひ]きもど\\f[さしすせそ]\\f","引き★戻\\1",inselect,regular; replaceallfast "ひき戻\\f[さしすせそ]\\f","引き★戻\\1",inselect,regular; replaceallfast "[引ひ]き[寄よ]せ","引き★寄せ",inselect,regular; replaceallfast "[引ひ]き[分わ]け","引き★分け",inselect,regular; replaceallfast "[引ひ]きわた\\f[さしすせそ]\\f","引き★渡\\1",inselect,regular; replaceallfast "ひき渡\\f[さしすせそ]\\f","引き★渡\\1",inselect,regular; replaceallfast "[引ひ]っ[込こ]\\f[まみむめもん]\\f","引っ★込\\1",inselect,regular; replaceallfast "[引ひ]っ[張ぱ]\\f[らりるれろっ]\\f","引っ★張\\1",inselect,regular; //(吹き|ふき)(上がる|あがる|上げる|あげる|荒れる|あれる|下ろす|おろす|返す|かえす|込む|こむ|出す|だす|出る|でる|飛ぶ|とぶ|抜ける|ぬける|払う|はらう|寄せる|よせる|渡る|わたる)→吹き★(上がる|上げる|荒れる|下ろす|返す|込む|出す|出る|飛ぶ|抜ける|払う|寄せる|渡る) replaceallfast "[吹ふ]き[上あ]\\f[がげ]\\f","吹き★上\\1",inselect,regular; replaceallfast "[吹ふ]き[荒あ]れ","吹き★荒れ",inselect,regular; replaceallfast "[吹ふ]き[下お]ろ\\f[さしすせそ]\\f","吹き★下ろ\\1",inselect,regular; replaceallfast "[吹ふ]きかえ\\f[さしすせそ]\\f","吹き★返\\1",inselect,regular; replaceallfast "ふき返\\f[さしすせそ]\\f","吹き★返\\1",inselect,regular; replaceallfast "[吹ふ]き[込こ]\\f[まみむめもん]\\f","吹き★込\\1",inselect,regular; replaceallfast "[吹ふ]き[出だ]\\f[さしすせそ]\\f","吹き★出\\1",inselect,regular; replaceallfast "[吹ふ]き[出で]\\f[たてる]\\f","吹き★出\\1",inselect,regular; replaceallfast "[吹ふ]き[飛と]\\f[はびぶべぼん]\\f","吹き★飛\\1",inselect,regular; replaceallfast "[吹ふ]き[抜ぬ]\\f[いかきくけこ]\\f","吹き★抜\\1",inselect,regular; replaceallfast "[吹ふ]きはら\\f[いうえおっ]\\f","吹き★払\\1",inselect,regular; replaceallfast "ふき払\\f[いうえおっ]\\f","吹き★払\\1",inselect,regular; replaceallfast "[吹ふ]き[寄よ]せ","吹き★寄せ",inselect,regular; replaceallfast "[吹ふ]きわた\\f[らりるれろっ]\\f","吹き★渡\\1",inselect,regular; replaceallfast "ふき渡\\f[らりるれろっ]\\f","吹き★渡\\1",inselect,regular; //(踏み|ふみ)(入る|いる|切る|きる|込む|こむ|倒す|たおす|出す|だす|抜く|ぬく|破る|やぶる)→踏み★(入る|切る|込む|倒す|出す|抜く|破る) replaceallfast "[踏ふ]み[入い]\\f[らりるれっ]\\f","踏み★入\\1",inselect,regular; replaceallfast "[踏ふ]み[切き]\\f[らりるれろっ]\\f","踏み★切\\1",inselect,regular; replaceallfast "[踏ふ]み[込こ]\\f[まみむめもん]\\f","踏み★込\\1",inselect,regular; replaceallfast "[踏ふ]みたお\\f[さしすせそ]\\f","踏み★倒\\1",inselect,regular; replaceallfast "ふみ倒\\f[さしすせそ]\\f","踏み★倒\\1",inselect,regular; replaceallfast "[踏ふ]み[出だ]\\f[さしすせそ]\\f","踏み★出\\1",inselect,regular; replaceallfast "[踏ふ]み[抜ぬ]\\f[いかきくけこ]\\f","踏み★抜\\1",inselect,regular; replaceallfast "[踏ふ]みやぶ\\f[らりるれろっ]\\f","踏み★破\\1",inselect,regular; replaceallfast "ふみ破\\f[らりるれろっ]\\f","踏み★破\\1",inselect,regular; //(振り|ふり)(合う|あう|上げる|あげる|落とす|おとす|返る|かえる|切る|きる|込む|こむ|出す|だす|付ける|つける|抜く|ぬく|払う|はらう|向く|むく|戻す|もどす|分ける|わける)→振り★(合う|上げる|落とす|返る|切る|込む|出す|付ける|抜く|払う|向く|戻す|分ける) //(振る|ふる)(舞う|まう)→振る★舞う replaceallfast "[振ふ]\\fり\\f[合あ]\\f[いうえおっ]\\f","振り★合\\1",inselect,regular; replaceallfast "[振ふ]り[上あ]げ","振り★上げ",inselect,regular; replaceallfast "[振ふ]り[落お]と","振り★落と",inselect,regular; replaceallfast "[振ふ]りかえ\\f[らりるれろっ]\\f","振り★返\\1",inselect,regular; replaceallfast "ふり返\\f[らりるれろっ]\\f","振り★返\\1",inselect,regular; replaceallfast "[振ふ]り[切き]\\f[らりるれろっ]\\f","振り★切\\1",inselect,regular; replaceallfast "[振ふ]り[込こ]\\f[まみむめもん]\\f","振り★込\\1",inselect,regular; replaceallfast "[振ふ]り[出だ]\\f[さしすせそ]\\f","振り★出\\1",inselect,regular; replaceallfast "[振ふ]り[付つ]け","振り★付け",inselect,regular; replaceallfast "[振ふ]り[抜ぬ]\\f[いかきくけこ]\\f","振り★抜\\1",inselect,regular; replaceallfast "[振ふ]りはら\\f[いうえおっ]\\f","振り★払\\1",inselect,regular; replaceallfast "ふり払\\f[いうえおっ]\\f","振り★払\\1",inselect,regular; replaceallfast "[振ふ]り[向む]\\f[いかきくけこ]\\f","振り★向\\1",inselect,regular; replaceallfast "[振ふ]りもど\\f[さしすせそ]\\f","振り★戻\\1",inselect,regular; replaceallfast "ふり戻\\f[さしすせそ]\\f","振り★戻\\1",inselect,regular; replaceallfast "[振ふ]り[分わ]け","振り★分け",inselect,regular; replaceallfast "[振ふ]る[舞ま]\\f[いうえおっ]\\f","振る★舞\\1",inselect,regular; //(放り|ほうり)(上げる|あげる|込む|こむ|出す|だす|投げる|なげる)→放り★(上げる|込む|出す|投げる) replaceallfast "放り[上あ]げ","放り上げ★",inselect,regular; replaceallfast "ほうり[上あ]げ","放り上げ★",inselect,regular; replaceallfast "放り[込こ]\\f[まみむめもん]\\f","放り込★\\1",inselect,regular; replaceallfast "ほうり[込こ]\\f[まみむめもん]\\f","放り込★\\1",inselect,regular; replaceallfast "放り[出だ]\\f[さしすせそ]\\f","放り出★\\1",inselect,regular; replaceallfast "ほうり[出だ]\\f[さしすせそ]\\f","放り出★\\1",inselect,regular; replaceallfast "放り[投な]げ","放り投★げ",inselect,regular; replaceallfast "ほうり[投な]げ","放り投★げ",inselect,regular; //(掘り|ほり)(起こす|おこす|下げる|さげる|出す|だす|)→掘り★(起こす|下げる|出す) replaceallfast "[掘ほ]り[起お]こ","掘り★起こ",inselect,regular; replaceallfast "[掘ほ]り[下さ]げ","掘り★下げ",inselect,regular; replaceallfast "[掘ほ]り[出だ]\\f[さしすせそ]\\f","掘り★出\\1",inselect,regular; //(舞い|まい)(上がる|あがる|上げる|あげる|落ちる|おちる|込む|こむ)→舞い★(上がる|上げる|落ちる|込む) replaceallfast "[舞ま]い[上あ]\\f[がげ]\\f","舞い★上\\1",inselect,regular; replaceallfast "[舞ま]い[落お]ち","舞い★落ち",inselect,inselect,regular; replaceallfast "[舞ま]い[込こ]\\f[まみむめもん]\\f","舞い★込\\1",inselect,regular; //(巻き|まき)(上がる|あがる|上げる|あげる|起こす|おこす|返す|かえす|込む|こむ|取る|とる|直す|なおす|戻す|もどす)→巻き★(上がる|上げる|起こす|返す|込む|取る|直す|戻す) replaceallfast "[巻ま]き[上あ]\\f[がげ]\\f","巻き★上\\1",inselect,regular; replaceallfast "[巻ま]き[起お]こ","巻き★起こ",inselect,regular; replaceallfast "[巻ま]きかえ\\f[さしすせそ]\\f","巻き★返\\1",inselect,regular; replaceallfast "まき返\\f[さしすせそ]\\f","巻き★返\\1",inselect,regular; replaceallfast "[巻ま]き[込こ]\\f[まみむめもん]\\f","巻き★込\\1",inselect,regular; replaceallfast "[巻ま]き[取と]\\f[らりるれろっ]\\f","巻き★取\\1",inselect,regular; replaceallfast "[巻ま]きなお\\f[さしすせそ]\\f","巻き★直\\1",inselect,regular; replaceallfast "まき直\\f[さしすせそ]\\f","巻き★直\\1",inselect,regular; replaceallfast "[巻ま]きもど\\f[さしすせそ]\\f","巻き★戻\\1",inselect,regular; replaceallfast "まき戻\\f[さしすせそ]\\f","巻き★戻\\1",inselect,regular; //(待ち|まち)(合わせる|あわせる|受ける|うける|望む|のぞむ)→待ち★(合わせる|受ける|望む) replaceallfast "[待ま]ち[合あ]わ","待ち★合わ",inselect,regular; replaceallfast "[待ま]ち[受う]け","待ち★受け",inselect,regular; replaceallfast "[待ま]ちのぞ\\f[まみむめもん]\\f","待ち★望\\1",inselect,regular; replaceallfast "まち望\\f[まみむめもん]\\f","待ち★望\\1",inselect,regular; //見(あう|あげる|(い)だす|うける|かえす|かぎる|きる|きわめる|こす|こむ|すかす|すてる|たてる|ちがえる|とおす|なおす|ぬく|まう|やぶる|わける)→見★(合う|上げる|出す|受ける|返す|限る|切る|極める|越す|込む|透かす|捨てる|立てる|違える|通す|直す|抜く|舞う|破る|分ける) //みいだす→見出す replaceallfast "[見み]あ\\f[いうえっ]\\f","見合★\\1",inselect,regular; replaceallfast "[見み]あげ","見上★げ",inselect,regular; replaceallfast "[見み]いだ\\f[さしすせそ]\\f","見出★\\1",inselect,regular; replaceallfast "[見み]うけ","見受★け",inselect,regular; replaceallfast "[見み]かえ\\f[さしすせそらりるれっ]\\f","見返★\\1",inselect,regular; replaceallfast "[見み]かぎ\\f[らりるれろっ]\\f","見限★\\1",inselect,regular; replaceallfast "[見み]き\\f[らりるれろっ]\\f","見切★\\1",inselect,regular; replaceallfast "[見み]きわめ","見極★め",inselect,regular; replaceallfast "[見み]こ\\f[さしすせそ]\\f","見越★\\1",inselect,regular; replaceallfast "[見み]こ\\f[まみむめもん]\\f","\\1見込★\\1",inselect,regular; replaceallfast "[見み]すか\\f[さしすせそ]\\f","見透★か\\1",inselect,regular; replaceallfast "[見み]すて","見捨★て",inselect,regular; replaceallfast "[見み]たて","見立★て",inselect,regular; replaceallfast "[見み]ちがえ","見違★え",inselect,regular; replaceallfast "[見み]とお\\f[さしすせそ]\\f","見通★\\1",inselect,regular; replaceallfast "[見み]なお\\f[さしすせそ]\\f","見直★\\1",inselect,regular; replaceallfast "[見み]ぬ\\f[いかきくけこ]\\f","見抜★\\1",inselect,regular; replaceallfast "[見み]ま\\f[いうえおっ]\\f","見舞★\\1",inselect,regular; replaceallfast "[見み]やぶ\\f[らりるれろっ]\\f","見破★\\1",inselect,regular; replaceallfast "[見み]わけ","見分★け",inselect,regular; //(導き|みちびき)(入れる|いれる|出す|だす)→導き★(入れる|出す) replaceallfast "導き[入い]れ","導き★入れ",inselect,regular; replaceallfast "みちびき[入い]れ","導き★入れ",inselect,regular; replaceallfast "導き[出だ]\\f[さしすせそ]\\f","導き★出\\1",inselect,regular; replaceallfast "みちびき[出だ]\\f[さしすせそ]\\f","導き★出\\1",inselect,regular; //(向き|むき)(合う|あう|返る|かえる|直る|なおる)→向き★(合う|返る|直る) replaceallfast "[向む]き[合あ]\\f[いうえおっ]\\f","向き★合\\1",inselect,regular; replaceallfast "[向む]きかえ\\f[らりるれろっ]\\f","向き★返\\1",inselect,regular; replaceallfast "むき返\\f[らりるれろっ]\\f","向き★返\\1",inselect,regular; replaceallfast "[向む]きなお\\f[らりるれろっ]\\f","向き★直\\1",inselect,regular; replaceallfast "むき直\\f[らりるれろっ]\\f","向き★直\\1",inselect,regular; //(申し|もうし)(上げる|あげる|合わせる|あわせる|入れる|いれる|込む|こむ|立てる|たてる|出る|でる)→申し★(上げる|合わせる|入れる|込む|立てる|出る) replaceallfast "申し[上あ]げ","申し★上げ",inselect,regular; replaceallfast "もうし[上あ]げ","申し★上げ",inselect,regular; replaceallfast "申し[合あ]わせ","申し★合わせ",inselect,regular; replaceallfast "もうし[合あ]わせ","申し★合わせ",inselect,regular; replaceallfast "申し[入い]れ","申し★入れ",inselect,regular; replaceallfast "もうし[入い]れ","申し★入れ",inselect,regular; replaceallfast "申し[込こ]\\f[まみむめもん]\\f","申し★込\\1",inselect,regular; replaceallfast "もうし[込こ]\\f[まみむめもん]\\f","申し★込\\1",inselect,regular; replaceallfast "申し[立た]て","申し★立て",inselect,regular; replaceallfast "もうし[立た]て","申し★立て",inselect,regular; replaceallfast "申し[出で]\\f[たてよらるれろん]\\f","申し★出\\1",inselect,regular; replaceallfast "もうし[出で]\\f[たてよらるれろん]\\f","申し★出\\1",inselect,regular; //(持ち|もち)(合う|あう|上がる|あがる|上げる|あげる|合わせる|あわせる|帰る|かえる|越す|こす|込む|こむ|去る|さる|出す|だす|直す|なおす|運ぶ|はこぶ|寄る|よる)→持ち★(合う|上がる|上げる|合わせる|帰る|越す|込む|去る|出す|直す|運ぶ|寄る) replaceallfast "[持も]ち\\f[合あ]\\f[わいうえおっ]\\f","持ち★合\\1",inselect,regular; replaceallfast "[持も]ち[上あ]\\f[がげ]\\f","持ち★上\\1",inselect,regular; replaceallfast "[持も]ちかえ\\f[らりるれろっ]\\f","持ち★帰\\1",inselect,regular; replaceallfast "もち帰る\\f[らりるれろっ]\\f","持ち★帰\\1",inselect,regular; replaceallfast "[持も]ち[越こ]\\f[さしすせそ]\\f","持ち★越\\1",inselect,regular; replaceallfast "[持も]ち[込こ]\\f[まみむめもん]\\f","持ち★込\\1",inselect,regular; replaceallfast "[持も]ち[去さ]\\f[らりるれろっ]\\f","持ち★去\\1",inselect,regular; replaceallfast "[持も]ち[出だ]\\f[さしすせそ]\\f","持ち★出\\1",inselect,regular; replaceallfast "[持も]ちなお\\f[さしすせそ]\\f","持ち★直\\1",inselect,regular; replaceallfast "もち直\\f[さしすせそ]\\f","持ち★直\\1",inselect,regular; replaceallfast "[持も]ちはこ\\f[ばびぶべぼん]\\f","持ち★運\\1",inselect,regular; replaceallfast "もち運\\f[ばびぶべぼん]\\f","持ち★運\\1",inselect,regular; replaceallfast "[持も]ち[寄よ]\\f[らりるれろっ]\\f","持ち★寄\\1",inselect,regular; //(盛り|もり)(上がる|あがる|上げる|あげる|込む|こむ|立てる|たてる)→盛り★(上がる|上げる|込む|立てる) replaceallfast "[盛も]り[上あ]\\f[がげ]\\f","盛り★上\\1",inselect,regular; replaceallfast "[盛も]り[込こ]\\f[まみむめもん]\\f","盛り★込\\1",inselect,regular; replaceallfast "[盛も]り[立た]て","盛り★立て",inselect,regular; //(焼き|やき)(上げる|あげる|切る|きる|込む|こむ|付ける|つける|直す|なおす|残す|のこす|払う|はらう)→焼き★(上げる|切る|込む|付ける|直す|残す|払う) replaceallfast "[焼や]き[上あ]げ","焼き★上げ",inselect,regular; replaceallfast "[焼や]き[切き]\\f[らりるれろっ]\\f","焼き★切\\1",inselect,regular; replaceallfast "[焼や]き[込こ]\\f[まみむめもん]\\f","焼き★込\\1",inselect,regular; replaceallfast "[焼や]き[付つ]け","焼き★付け",inselect,regular; replaceallfast "[焼や]きなお\\f[さしすせそ]\\f","焼き★直\\1",inselect,regular; replaceallfast "やき直\\f[さしすせそ]\\f","焼き★直\\1",inselect,regular; replaceallfast "[焼や]けのこ\\f[さしすせそ]\\f","焼け★残\\1",inselect,regular; replaceallfast "やけ残\\f[さしすせそ]\\f","焼け★残\\1",inselect,regular; replaceallfast "[焼や]きはら\\f[わいうえおっ]\\f","焼き★払\\1",inselect,regular; replaceallfast "やき払\\f[わいうえおっ]\\f","焼き★払\\1",inselect,regular; //(揺れ|ゆれ)(動く|うごく|出す|だす)→揺れ★(動く|出す) replaceallfast "[揺ゆ]れうご\\f[かきくけこ]\\f","揺れ★動\\1",inselect,regular; replaceallfast "ゆれ動\\f[かきくけこ]\\f","揺れ★動\\1",inselect,regular; replaceallfast "[揺ゆ]れ[出だ]\\f[さしすせそ]\\f","揺れ★出\\1",inselect,regular; //(呼び|よび)(合う|あう|入れる|いれる|起こす|おこす|込む|こむ|覚ます|さます|捨てる|すてる|出す|だす|立てる|たてる|止める|とめる|戻す|もどす|寄せる|よせる)→呼び★(合う|入れる|起こす|込む|覚ます|捨てる|出す|立てる|止める|戻す|寄せる) replaceallfast "[呼よ]び[合あ]\\f[わいうえおっ]\\f","呼び★合\\1",inselect,regular; replaceallfast "[呼よ]び[入い]れ","呼び★入れ",inselect,regular; replaceallfast "[呼よ]び[起お]こ","呼び★起こ",inselect,regular; replaceallfast "[呼よ]び[込こ]\\f[まみむめもん]\\f","呼び★込\\1",inselect,regular; replaceallfast "[呼よ]び[覚さ]ま","呼び★覚ま",inselect,regular; replaceallfast "[呼よ]び[捨す]て","呼び★捨て",inselect,regular; replaceallfast "[呼よ]び[出だ]\\f[さしすせそ]\\f","呼び★出\\1",inselect,regular; replaceallfast "[呼よ]び[立た]て","呼び★立て",inselect,regular; replaceallfast "[呼よ]び[止と]め","呼び★止め",inselect,regular; replaceallfast "[呼よ]びもど\\f[さしすせそ]\\f","呼び★戻\\1",inselect,regular; replaceallfast "よび戻\\f[さしすせそ]\\f","呼び★戻\\1",inselect,regular; replaceallfast "[呼よ]び[寄よ]せ","呼び★寄せ",inselect,regular; //(読み|よみ)(上げる|あげる|落とす|おとす|返す|かえす|換える|かえる|切る|きる|込む|こむ|出す|だす|継ぐ|つぐ|尽くす|つくす|通す|とおす|解く|とく|飛ばす|とばす|取る|とる|直す|なおす|残す|のこす|忘れる|わすれる)→読み★(上げる|落とす|返す|換える|切る|込む|出す|継ぐ|尽くす|通す|解く|飛ばす|取る|直す|残す|忘れる) replaceallfast "[読よ]み[上あ]げ","読み★上げ",inselect,regular; replaceallfast "[読よ]み[落お]と","読み★落と",inselect,regular; replaceallfast "[読よ]みかえ\\f[さしすせそ]\\f","読み★返\\1",inselect,regular; replaceallfast "よみ返\\f[さしすせそ]\\f","読み★返\\1",inselect,regular; replaceallfast "[読よ]み[換か]え","読み★換え",inselect,regular; replaceallfast "[読よ]み[切き]\\f[らりるれろっ]\\f","読み★切\\1",inselect,regular; replaceallfast "[読よ]み[込こ]\\f[まみむめもん]\\f","読み★込\\1",inselect,regular; replaceallfast "[読よ]み[出だ]\\f[さしすせそ]\\f","読み★出\\1",inselect,regular; replaceallfast "[読よ]み[継つ]\\f[がぎぐげごい]\\f","読み★継\\1",inselect,regular; replaceallfast "[読よ]み[尽つ]く","読み★尽く",inselect,regular; replaceallfast "[読よ]みとお\\f[さしすせそ]\\f","読み★通\\1",inselect,regular; replaceallfast "よみ通\\f[さしすせそ]\\f","読み★通\\1",inselect,regular; replaceallfast "[読よ]み[解と]\\f[いかきくけこ]\\f","読み★解\\1",inselect,regular; replaceallfast "[読よ]み[飛と]ば","読み★飛ば",inselect,regular; replaceallfast "[読よ]み[取と]\\f[らりるれろっ]\\f","読み★取\\1",inselect,regular; replaceallfast "[読よ]みなお\\f[さしすせそ]\\f","読み★直\\1",inselect,regular; replaceallfast "よみ直\\f[さしすせそ]\\f","読み★直\\1",inselect,regular; replaceallfast "[読よ]みのこ\\f[さしすせそ]\\f","読み★残\\1",inselect,regular; replaceallfast "よみ残\\f[さしすせそ]\\f","読み★残\\1",inselect,regular; replaceallfast "[読よ]みわすれ","読み★忘れ",inselect,regular; replaceallfast "よみ忘れ","読み★忘れ",inselect,regular; //(寄り|より)(返す|かえす|切る|きる|倒す|たおす)→寄り★(返す|切る|倒す) replaceallfast "[寄よ]りかえ\\f[らりるれろっ]\\f","寄り★返\\1",inselect,regular; replaceallfast "より返\\f[らりるれろっ]\\f","寄り★返\\1",inselect,regular; replaceallfast "[寄よ]り[切き]\\f[らりるれろっ]\\f","寄り★切\\1",inselect,regular; replaceallfast "[寄よ]りたお\\f[さしすせそ]\\f","寄り★倒\\1",inselect,regular; replaceallfast "より倒\\f[さしすせそ]\\f","寄り★倒\\1",inselect,regular; //(割り|わり)(当てる|あてる|切る|きる|込む|こむ|出す|だす|付ける|つける|引く|びく|振る|ふる)→割り★(当てる|切る|込む|出す|付ける|引く|振る) replaceallfast "[割わ]り[当あ]て","割り★当て\\1",inselect,regular; replaceallfast "[割わ]り[切き]\\f[らりるれろっ]\\f","割り★切\\1",inselect,regular; replaceallfast "[割わ]り[込こ]\\f[まみむめもん]\\f","割り★込\\1",inselect,regular; replaceallfast "[割わ]り[出だ]\\f[さしすせそ]\\f","割り★出\\1",inselect,regular; replaceallfast "[割わ]り[付つ]け","割り★付け",inselect,regular; replaceallfast "[割わ]り[引び]\\f[いかきくけこ]\\f","割り★引\\1",inselect,regular; replaceallfast "[割わ]り[振ふ]\\f[らりるれろっ]\\f","割り★振\\1",inselect,regular; //(請け|絡み|助け|釣り|触れ|渡り)あう→(請け|絡み|助け|釣り|触れ|渡り)合う★ replaceallfast "\\f[請助]\\fけあ\\f[いうえおっ]\\f","\\1け合\\3★",inselect,regular; replaceallfast "絡みあ\\f[いうえおっ]\\f","絡み合\\1★",inselect,regular; replaceallfast "\\f[釣渡]\\fりあ\\f[いうえおっ]\\f","\\1り合\\3★",inselect,regular; replaceallfast "触れあ\\f[いうえおっ]\\f","触れ合\\1★",inselect,regular; //(数え|築き|染め|作り|創り|跳ね|震え|燃え)あ(が|げ)る→(数え|築き|染め|作り|創り|跳ね|震え|燃え)上(が|げ)る★ replaceallfast "\\f[数震燃]\\fえあ\\f[がげ]\\f","\\1え上\\3★",inselect,regular; replaceallfast "築きあ\\f[がげ]\\f","築き上\\1★",inselect,regular; replaceallfast "染めあ\\f[がげ]\\f","染め上\\1★",inselect,regular; replaceallfast "\\f[作創]\\fりあ\\f[がげ]\\f","\\1り上\\3★",inselect,regular; replaceallfast "跳ねあ\\f[がげ]\\f","跳ね上\\1★",inselect,regular; //迎えいれる→迎え入★れる replaceallfast "迎えいれ","迎え入★れ",inselect,regular; //(叩き|湧き)おこ(す|る)→(叩き|湧き)起こ(す|る)★ replaceallfast "\\f[叩湧]\\fきおこ","\\1き起こ★",inselect,regular; //(信じ|叩き|断ち|使い|呑み|飲み)きる→(信じ|叩き|断ち|使い|呑み|飲み)切る★ replaceallfast "信じき\\f[らりるれろっ]\\f","信じ切\\1★",inselect,regular; replaceallfast "叩きき\\f[らりるれろっ]\\f","叩き切\\1★",inselect,regular; replaceallfast "使いき\\f[らりるれろっ]\\f","使い切\\1★",inselect,regular; replaceallfast "断ちき\\f[らりるれろっ]\\f","断ち切\\1★",inselect,regular; replaceallfast "\\f[呑飲]\\fみき\\f[らりるれろっ]\\f","\\1み切\\3★",inselect,regular; //(入れ|埋め|教え|駆け|刈り|刻み|誘い|忍び|信じ|吸い|座り|注ぎ|抱き|叩き|立て|使い|詰め|溶け|流れ|殴り|呑み|飲み|入り|話し|封じ|放り|迷い|潜り)こむ→(入れ|埋め|教え|駆け|刈り|考え|刻み|誘い|忍び|信じ|吸い|座り|注ぎ|抱き|叩き|立て|使い|詰め|溶け|流れ|殴り|呑み|飲み|入り|話し|封じ|放り|迷い|潜り)込む★ replaceallfast "\\f[誘吸使迷]\\fいこ\\f[まみむめもん]\\f","\\1い込\\3★",inselect,regular; replaceallfast "\\f[教考]\\fえこ\\f[まみむめもん]\\f","\\1え込\\3★",inselect,regular; replaceallfast "\\f[抱叩]\\fきこ\\f[まみむめもん]\\f","\\1き込\\3★",inselect,regular; replaceallfast "注ぎこ\\f[まみむめもん]\\f","注ぎ込\\1★",inselect,regular; replaceallfast "\\f[駆溶]\\fけこ\\f[まみむめもん]\\f","\\1け込\\3★",inselect,regular; replaceallfast "\\f[信封]\\fじこ\\f[まみむめもん]\\f","\\1じ込\\3★",inselect,regular; replaceallfast "立てこ\\f[まみむめもん]\\f","立て込\\1★",inselect,regular; replaceallfast "忍びこ\\f[まみむめもん]\\f","忍び込\\1★",inselect,regular; replaceallfast "\\f[刻呑飲]\\fみこ\\f[まみむめもん]\\f","\\1み込\\3★",inselect,regular; replaceallfast "\\f[埋詰]\\fめこ\\f[まみむめもん]\\f","\\1め込\\3★",inselect,regular; replaceallfast "\\f[刈座殴入放潜]\\fりこ\\f[まみむめもん]\\f","\\1り込\\3★",inselect,regular; replaceallfast "\\f[入流]\\fれこ\\f[まみむめもん]\\f","\\1れ込\\3★",inselect,regular; //垂れさ(が|げ)る→垂れ下(が|げ)る replaceallfast "垂れさ\\f[がげ]\\f","垂れ下\\1★",inselect,regular; //(溢れ|映し|生み|描き|駆け|刈り|考え|探り|誘い|救い|叩き|作り|創り|流れ|投げ|脱け|貼り|湧き)だす→(溢れ|映し|産み|描き|駆け|刈り|考え|探り|誘い|救い|叩き|作り|創り|流れ|投げ|脱け|貼り|湧き)出す★ replaceallfast "\\f[誘救]\\fいだ\\f[さしすせそ]\\f","\\1い出\\3★",inselect,regular; replaceallfast "考えだ\\f[さしすせそ]\\f","考え出\\1★",inselect,regular; replaceallfast "\\f[描叩湧]\\fきだ\\f[さしすせそ]\\f","\\1き出\\3★",inselect,regular; replaceallfast "\\f[駆脱]\\fけだ\\f[さしすせそ]\\f","\\1け出\\3★",inselect,regular; replaceallfast "投げだ\\f[さしすせそ]\\f","投げ出\\1★",inselect,regular; replaceallfast "映しだ\\f[さしすせそ]\\f","映し出\\1★",inselect,regular; replaceallfast "生みだ\\f[さしすせそ]\\f","生み出\\1★",inselect,regular; replaceallfast "\\f[刈探作創貼]\\fりだ\\f[さしすせそ]\\f","\\1り出\\3★",inselect,regular; replaceallfast "\\f[溢流]\\fれだ\\f[さしすせそ]\\f","\\1れ出\\3★",inselect,regular; //駆りたてる→駆り立て★る replaceallfast "駆りたて","駆り立て★",inselect,regular; //(溢れ|流れ|脱け|湧き)でる→(溢れ|流れ|脱け|湧き)出る★ replaceallfast "湧きで\\f[るれた]\\f","湧き出\\1★",inselect,regular; replaceallfast "脱けで\\f[るれた]\\f","脱け出\\1★",inselect,regular; replaceallfast "\\f[溢流]\\fれで\\f[るれた]\\f","\\1れ出\\3★",inselect,regular; //(刺し|貫き)とおす→(刺し|貫き)通す★ replaceallfast "刺しとお\\f[さしすせそ]\\f","刺し通\\1★",inselect,regular; replaceallfast "貫きとお\\f[さしすせそ]\\f","貫き通\\1★",inselect,regular; //(絡め|感じ|刈り|剥ぎ|拭き)とる→(絡め|感じ|刈り|剥ぎ|拭き)取る★ replaceallfast "拭きと\\f[らりるれろっ]\\f","拭き取\\1★",inselect,regular; replaceallfast "剥ぎと\\f[らりるれろっ]\\f","剥ぎ取\\1★",inselect,regular; replaceallfast "感じと\\f[らりるれろっ]\\f","感じ取\\1★",inselect,regular; replaceallfast "絡めと\\f[らりるれろっ]\\f","絡め取\\1★",inselect,regular; replaceallfast "刈りと\\f[らりるれろっ]\\f","刈り取\\1★",inselect,regular; //(駆け|払い)もど(す/る)→(駆け|払い)戻(す/る)★ replaceallfast "払いもど\\f[さしすせそらりるれろっ]\\f","払い戻\\1★",inselect,regular; replaceallfast "駆けもど\\f[らりるれろっ]\\f","駆け戻\\1★",inselect,regular; //(言|追|思|想|買|食|誘|吸|救|使|払|舞)(合|上|当|入|浮|起|返|切|込|下|知|通|出|倒|立|止|直|放|負|戻|寄|渡)→(言|追|思|想|買|食|誘|吸|救|使|払|舞)い★(合|上|当|入|浮|起|返|切|込|下|知|通|出|倒|立|止|直|放|負|戻|寄|渡) replaceallfast "\\f[言追思想買食誘吸救使払舞]\\f[合上当入浮起返切込下知通出倒立止直放負戻寄渡]\\f","\\1い★\\2",inselect,regular; //(浮|描|抱|叩|起|置|書|聞|突|鳴|泣|抜|引|吹|巻|導|向|湧)(合|上|入|受|起|落|返|換|込|殺|下|去|刺|沈|倒|出|立|通|継|止|取|直|抜|剥|払|戻|破|寄|分|忘|渡)→(浮|描|抱|叩|起|置|書|聞|突|鳴|泣|抜|引|吹|巻|導|向|湧)き★(合|上|入|受|起|落|返|換|込|殺|下|去|刺|沈|倒|出|立|通|継|止|取|直|抜|剥|払|戻|破|寄|分|忘|渡) replaceallfast "\\f[浮描起置書聞抱叩突鳴泣抜引吹巻導向湧]\\f[合上入受起落返換込殺下去刺沈通倒出立継止取直抜剥払戻破寄分忘渡]\\f","\\1き★\\2",inselect,regular; //(脱|剥)(落|去|出|取)→(脱|剥)ぎ★(落|去|出|取) replaceallfast "\\f[脱剥]\\f[落去出取]\\f","\\1ぎ★\\2",inselect,regular; //(受|請|駆|抜)(合|入|込|出|付|止|取|持)→(受|請|駆|抜)け★(合|入|込|出|付|止|取|持) replaceallfast "\\f[受請駆抜]\\f[合入込出付止取持]\\f","\\1け★\\2",inselect,regular; //(押|探|差|出|話|申)(合|上|当|入|返|切|込|下|倒|立|尽|出|止|取|抜|戻|求|寄)→(押|探|差|出|話|申)し★(合|上|当|入|返|切|込|下|倒|立|尽|出|止|取|抜|戻|求|寄) replaceallfast "\\f[押探差出話申]\\f[合上当入返切込下倒立尽出止取抜戻求寄]\\f","\\1し★\\2",inselect,regular; //(打|落|立|待|持)(合|上|会|入|受|落|返|切|越|込|去|着|出|立|止|取|直|並|抜|望|昇|運|負|戻|破|寄)→(打|落|立|待|持)ち★(合|上|会|入|受|落|返|切|越|込|去|着|出|立|止|取|直|並|抜|望|昇|運|負|戻|破|寄) replaceallfast "\\f[打落立待持]\\f[合上会入受落返切越込去着出立止取直並抜望昇運負戻破寄]\\f","\\1ち★\\2",inselect,regular; //(突|引)(込|張)→(突|引)っ★(込|張) replaceallfast "\\f[突引]\\f[込張]\\f","\\1っ★\\2",inselect,regular; //(選|忍|飛|呼)(合|上|入|起|込|去|出|立|止|取|戻|寄)→(選|忍|飛|呼)び★(合|上|入|起|込|去|出|立|止|取|戻|寄) replaceallfast "\\f[選忍飛呼]\\f[合上入起込去出立止取戻寄]\\f","\\1び★\\2",inselect,regular; //(生|産|刻|組|汲|積|飲|呑|踏|読)(合|上|入|替|返|刻|切|込|裂|下|敷|倒|立|畳|着|出|通|取|直|抜|踏|負|戻|分|破)→(生|産|刻|組|汲|積|飲|呑|踏|読)み★(合|上|入|替|返|刻|切|込|裂|下|敷|倒|立|畳|着|出|通|取|直|抜|踏|負|戻|分|破) replaceallfast "\\f[生産刻組汲積飲呑踏読]\\f[合上入替返刻切込裂下敷倒立畳着出取直抜踏負戻分破]\\f","\\1み★\\2",inselect,regular; //(埋|締|詰)(上|切|込|殺|出)→(埋|締|詰)め★(上|切|込|殺|出) replaceallfast "\\f[埋締詰]\\f[上切込殺出]\\f","\\1め★\\2",inselect,regular; //(売|送|折|織|刈|切|繰|探|知|座|取|成|鳴|乗|入|張|振|放|掘|盛|寄|渡|割)(合|上|扱|当|入|返|換|替|囲|重|刻|決|切|崩|組|越|込|裂|下|去|締|捨|揃|倒|畳|着|出|立|違|付|通|轟|飛|取|直|投|抜|残|除|走|離|払|引|響|開|振|負|持|戻|破|止|寄|分)→(売|送|折|織|刈|切|繰|探|知|座|取|成|鳴|乗|入|張|振|放|掘|盛|寄|渡|割)り★(合|上|扱|当|入|返|換|替|囲|重|刻|決|切|崩|組|越|込|裂|下|去|締|捨|揃|倒|畳|着|出|立|違|付|通|轟|飛|取|直|投|抜|残|除|走|離|払|引|響|開|振|負|持|戻|破|止|寄|分) replaceallfast "\\f[売送折織刈切繰探知座取成鳴乗入張振放掘盛寄割]\\f[合上扱当入返換重替囲刻決切崩組越込裂下去締捨揃倒畳着出立違付通轟飛取直投抜残除走離払引響開振負持戻破止寄分]\\f","\\1り★\\2",inselect,regular; //振舞う→振る★舞う replaceallfast "振舞","振る★舞",inselect,regular; //(溢|入|垂|連|流|触)(合|帰|込|去|出|戻)→(溢|入|垂|連|流|触)れ★(合|帰|込|去|出|戻) replaceallfast "\\f[溢入垂連流触]\\f[合帰込去出戻]\\f","\\1れ★\\2",inselect,regular; | |
▲目次へ |
送りがなの統一
//■送りがなの統一(全部送る)(きりがないので// 頻度の高いものだけ) //■単独動詞 //上る→上がる replaceallfast "上\\f[らりるれろっ]\\f","上が★\\1",inselect,regular; //表す→表わす、現す→現わす //表れ→表われ、現れ→現われ replaceallfast "\\f[^公再実体代発表]\\f[表現]\\f[さしすせそれ]\\f","\\1\\2わ★\\3",inselect,regular; //合す→合わす replaceallfast "\\f[^打落化結総立統突取引向融連]\\f合\\f[さしすせそ]\\f","\\1合わ★\\3",inselect,regular; //浮ぶ→浮かぶ replaceallfast "浮\\f[ばびぶべぼん]\\f","浮か★\\1",inselect,regular; //生れ→生まれ replaceallfast "生れ","生まれ★",inselect,regular; //起す→起こす replaceallfast "\\f[^喚惹想提奮]\\f起\\f[さしすせそらりるれろっ]\\f","\\1起こ★\\3",inselect,regular; //行う→行なう replaceallfast "行\\f[いうえおわっ]\\f","行な★\\1",inselect,regular; //落す→落とす replaceallfast "\\f[^下欠堕]\\f落\\f[さしすせそ]\\f","\\1落と★\\3",inselect,regular; //終る→終わる、変る→変わる,代る→代わる replaceallfast "\\f[終変代]\\f[らりるれろっ]\\f","\\1わ★\\2",inselect,regular; //聞える→聞こえる replaceallfast "聞え","聞こえ★",inselect,regular; //決る→決まる replaceallfast "決\\f[らりるれろっ]\\f","決ま★\\1",inselect,regular; //暮す→暮らす replaceallfast "暮\\f[さしすせそ]\\f","暮ら★\\1",inselect,regular; //異る→異なる replaceallfast "異\\f[らりるれろっ]\\f","異な★\\1",inselect,regular; //過す→過ごす replaceallfast "\\f[^経通]\\f過\\f[さしすせそ]\\f","\\1過ご★\\3",inselect,regular; //突込む→突っ込む replaceallfast "突込","突っ★込",inselect,regular; //果す→果たす replaceallfast "果\\f[さしすせそ]\\f","果た★\\1",inselect,regular; //引掻く、引張る→引っ掻く、引っ張る replaceallfast "引\\f[掻張]\\f","引っ★\\1",inselect,regular; //振舞う→振る舞う replaceallfast "振舞","振る★舞",inselect,regular; //向う→向かう replaceallfast "\\f[^出]\\f向\\f[いうえおわっ]\\f","\\1向か★\\3",inselect,regular; //分る→分かる replaceallfast "分\\f[らりるれろっ]\\f","分か★\\1",inselect,regular; //■複合動詞 //浮上がる→浮き上がる replaceallfast "浮\\f[上沈出立]\\f","浮き★\\1",inselect,regular; //受入れる→受け入れる replaceallfast "受\\f[入継付止取持]\\f","受け★\\1",inselect,regular; //打合う→打ち合う replaceallfast "打\\f[合上落込出立倒取抜払]\\f","打ち★\\1",inselect,regular; //落込む→落ち込む replaceallfast "落\\f[合込着]\\f","落ち★\\1",inselect,regular; //組上がる→組み上がる replaceallfast "組\\f[上合入換替変込捨出取]\\f","組み★\\1",inselect,regular; //繰返す→繰り返す replaceallfast "繰\\f[上入下返込出]\\f","繰り★\\1",inselect,regular; //立合う→立ち合う replaceallfast "立\\f[会合上入去向]\\f","立ち★\\1",inselect,regular; //突刺す→突き刺す replaceallfast "突\\f[合上入落刺出立]\\f","突き★\\1",inselect,regular; //取出す→取り出す replaceallfast "取\\f[合扱上入下落込締出立違持]\\f","取り★\\1",inselect,regular; //引下げる→引き下げる replaceallfast "引\\f[合上入起下落込籠締出立取抜払]\\f","引き★\\1",inselect,regular; //振込む→振り込む replaceallfast "振\\f[上落返込捨出抜払]\\f","振り★\\1",inselect,regular; //向合う→向き合う replaceallfast "向合","向き★合",inselect,regular; //持出す→持ち出す replaceallfast "持\\f[合上帰越込去出直運寄]\\f","持ち★\\1",inselect,regular; //割(当てる)→割り当てる replaceallfast "割\\f[当返込出付引振戻]\\f","割り★\\1",inselect,regular; | |
▲目次へ |
世紀、年月日を漢数字化し、トンボの十を使う
//■数字の漢数字化 //和文の前後の算用数字を漢数字化する replaceallfast "\\f[ -黑]\\f[00]","\\1〇",inselect,regular; replaceallfast "\\f[ -黑]\\f[11]","\\1一",inselect,regular; replaceallfast "\\f[ -黑]\\f[22]","\\1二",inselect,regular; replaceallfast "\\f[ -黑]\\f[33]","\\1三",inselect,regular; replaceallfast "\\f[ -黑]\\f[44]","\\1四",inselect,regular; replaceallfast "\\f[ -黑]\\f[55]","\\1五",inselect,regular; replaceallfast "\\f[ -黑]\\f[66]","\\1六",inselect,regular; replaceallfast "\\f[ -黑]\\f[77]","\\1七",inselect,regular; replaceallfast "\\f[ -黑]\\f[88]","\\1八",inselect,regular; replaceallfast "\\f[ -黑]\\f[99]","\\1九",inselect,regular; replaceallfast "[00]\\f[ -黑]\\f","〇\\1",inselect,regular; replaceallfast "[11]\\f[ -黑]\\f","一\\1",inselect,regular; replaceallfast "[22]\\f[ -黑]\\f","二\\1",inselect,regular; replaceallfast "[33]\\f[ -黑]\\f","三\\1",inselect,regular; replaceallfast "[44]\\f[ -黑]\\f","四\\1",inselect,regular; replaceallfast "[55]\\f[ -黑]\\f","五\\1",inselect,regular; replaceallfast "[66]\\f[ -黑]\\f","六\\1",inselect,regular; replaceallfast "[77]\\f[ -黑]\\f","七\\1",inselect,regular; replaceallfast "[88]\\f[ -黑]\\f","八\\1",inselect,regular; replaceallfast "[99]\\f[ -黑]\\f","九\\1",inselect,regular; //置換された漢数字の前後の算用数字をさらに漢数字化する replaceallfast "\\f[ -黑\n]\\f[00]","\\1〇",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[11]","\\1一",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[22]","\\1二",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[33]","\\1三",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[44]","\\1四",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[55]","\\1五",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[66]","\\1六",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[77]","\\1七",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[88]","\\1八",inselect,regular; replaceallfast "\\f[ -黑\n]\\f[99]","\\1九",inselect,regular; replaceallfast "[00]\\f[ -黑\n]\\f","〇\\1",inselect,regular; replaceallfast "[11]\\f[ -黑\n]\\f","一\\1",inselect,regular; replaceallfast "[22]\\f[ -黑\n]\\f","二\\1",inselect,regular; replaceallfast "[33]\\f[ -黑\n]\\f","三\\1",inselect,regular; replaceallfast "[44]\\f[ -黑\n]\\f","四\\1",inselect,regular; replaceallfast "[55]\\f[ -黑\n]\\f","五\\1",inselect,regular; replaceallfast "[66]\\f[ -黑\n]\\f","六\\1",inselect,regular; replaceallfast "[77]\\f[ -黑\n]\\f","七\\1",inselect,regular; replaceallfast "[88]\\f[ -黑\n]\\f","八\\1",inselect,regular; replaceallfast "[99]\\f[ -黑\n]\\f","九\\1",inselect,regular; //西暦、年月日の漢数字化 replaceallfast "[00]\\f[年月日世]\\f","〇\\1",inselect,regular; replaceallfast "[11]\\f[年月日世]\\f","一\\1",inselect,regular; replaceallfast "[22]\\f[年月日世]\\f","二\\1",inselect,regular; replaceallfast "[33]\\f[年月日世]\\f","三\\1",inselect,regular; replaceallfast "[44]\\f[年月日世]\\f","四\\1",inselect,regular; replaceallfast "[55]\\f[年月日世]\\f","五\\1",inselect,regular; replaceallfast "[66]\\f[年月日世]\\f","六\\1",inselect,regular; replaceallfast "[77]\\f[年月日世]\\f","七\\1",inselect,regular; replaceallfast "[88]\\f[年月日世]\\f","八\\1",inselect,regular; replaceallfast "[99]\\f[年月日世]\\f","九\\1",inselect,regular; replaceallfast "[00]\\f[〇一二三四五六七八九]\\f年","〇\\1年",inselect,regular; replaceallfast "[11]\\f[〇一二三四五六七八九]\\f年","一\\1年",inselect,regular; replaceallfast "[22]\\f[〇一二三四五六七八九]\\f年","二\\1年",inselect,regular; replaceallfast "[33]\\f[〇一二三四五六七八九]\\f年","三\\1年",inselect,regular; replaceallfast "[44]\\f[〇一二三四五六七八九]\\f年","四\\1年",inselect,regular; replaceallfast "[55]\\f[〇一二三四五六七八九]\\f年","五\\1年",inselect,regular; replaceallfast "[66]\\f[〇一二三四五六七八九]\\f年","六\\1年",inselect,regular; replaceallfast "[77]\\f[〇一二三四五六七八九]\\f年","七\\1年",inselect,regular; replaceallfast "[88]\\f[〇一二三四五六七八九]\\f年","八\\1年",inselect,regular; replaceallfast "[99]\\f[〇一二三四五六七八九]\\f年","九\\1年",inselect,regular; replaceallfast "[00]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","〇\\1\\2年",inselect,regular; replaceallfast "[11]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","一\\1\\2年",inselect,regular; replaceallfast "[22]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","二\\1\\2年",inselect,regular; replaceallfast "[33]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","三\\1\\2年",inselect,regular; replaceallfast "[44]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","四\\1\\2年",inselect,regular; replaceallfast "[55]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","五\\1\\2年",inselect,regular; replaceallfast "[66]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","六\\1\\2年",inselect,regular; replaceallfast "[77]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","七\\1\\2年",inselect,regular; replaceallfast "[88]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","八\\1\\2年",inselect,regular; replaceallfast "[99]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","九\\1\\2年",inselect,regular; replaceallfast "[11]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","一\\1\\2\\3年",inselect,regular; replaceallfast "[22]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f[〇一二三四五六七八九]\\f年","二\\1\\2\\3年",inselect,regular; //■世紀、年月日にトンボの十を使う //世紀をトンボの十を使って表わす replaceallfast "[11一]〇世紀","十世紀",inselect,regular; replaceallfast "[11一]\\f[一二三四五六七八九]\\f世紀","十\\1世紀",inselect,regular; replaceallfast "[22二]〇世紀","二十世紀",inselect,regular; replaceallfast "[22二]\\f[一二三四五六七八九]\\f世紀","二十\\1世紀",inselect,regular; //月日をトンボの十を使って表わす replaceallfast "[11一]〇\\f[月日]\\f","十\\1",inselect,regular; replaceallfast "[11一]\\f[一二]\\f月","十\\1月",inselect,regular; replaceallfast "[11一]\\f[一二三四五六七八九]\\f日","十\\1日",inselect,regular; replaceallfast "[22二]〇日","二十日",inselect,regular; replaceallfast "[22二]\\f[一二三四五六七八九]\\f日","二十\\1日",inselect,regular; replaceallfast "[33三]〇日","三十日",inselect,regular; replaceallfast "[33三]一日","三十一日",inselect,regular; //元号付き年号をトンボの十を使って表わす replaceallfast "\\f[治正和成]\\f[11一]〇年","\\1十年",inselect,regular; replaceallfast "\\f[治正和成]\\f[11一]\\f[一二三四五六七八九]\\f年","\\1十\\3年",inselect,regular; replaceallfast "\\f[治和成]\\f[22二]〇年","\\1二十年",inselect,regular; replaceallfast "\\f[治和成]\\f[22二]\\f[一二三四五六七八九]\\f年","\\1二十\\3年",inselect,regular replaceallfast "\\f[治和]\\f[33三]〇年","\\1三十年",inselect,regular; replaceallfast "\\f[治和]\\f[33三]\\f[一二三四五六七八九]\\f年","\\1三十\\3年",inselect,regular; replaceallfast "\\f[治和]\\f[44四]〇年","\\1四十年",inselect,regular; replaceallfast "\\f[治和]\\f[44四]\\f[一二三四五六七八九]\\f年","\\1四十\\3年",inselect,regular; replaceallfast "昭和[55五]〇年","昭和五十年",inselect,regular; replaceallfast "昭和[55五]\\f[一二三四五六七八九]\\f年","昭和五十\\1年",inselect,regular; replaceallfast "昭和[66六]〇年","昭和六十年",inselect,regular; replaceallfast "昭和[66六]\\f[一二三四五六七八九]\\f年","昭和六十\\1年",inselect,regular; |