|
こんにちは mnakan さん、安久津といいます。
> データ処理の際に、タブ区切りテキストをタブを改行に変更、またはその
>逆という操作をよくするのですが、本当に画面描画が邪魔なんです。流れて
行選択中の置換やファイル全体に対する置換は、
マクロにまとめてしまえばいいと思います。
replaceallfast "\\t", "\\n", regular, inselect;
replaceallfast "\\n", "\\t", regular, inselect;
replaceallfast ",", "\\t", regular, inselect;
replaceallfast "\\t", ",", regular, inselect;
replaceallfast "\\n", "<BR>\\n", regular, inselect;
replaceallfast "<[Bb][Rr]>\\n", "\\n",regular, inselect;
replaceallfast "^", "//", regular, inselect;
replaceallfast "^//\\f.?", "\\1", regular, inselect;
replaceallfast "^", "'", regular, inselect;
replaceallfast "^'\\f.?", "\\1", regular, inselect;
replaceallfast "^", ">", regular, inselect;
replaceallfast "^>\\f.?", "\\1", regular, inselect;
ではでは。
|
|