ruby Pythonで利用できるSwapCase()関数*1をEmEditorでも使えるように、きのうかくちょうをしてみた。
http://la.ma.la/blog/diary_200512291411.htm la.maさんのエントリをさんこうに
SwapCaseマクロ
// 大文字を小文字に、小文字を大文字に
String.prototype.swapcase = function(){
return this.replace(/([a-z])|([A-Z])/g,function($0,$1,$2){
return ($1) ? $0.toUpperCase() : $0.toLowerCase()
})
}
document.selection.Text =
document.selection.Text.swapcase();replace関数にCallBack出来るのは驚いた。