himorogiの日記

主にプログラミングに関することなど。少々ハード(電子工作)についても。

2014-11-09から1日間の記事一覧

おまけ:numbers の生成

スクリプトエディタ版 app = Application.currentApplication(); app.includeStandardAdditions =true; function numbers(x){ return ( "0000" + Math.floor( Math.random()*Math.pow(10,x) ) ).substr(-x) } app.displayAlert( numbers( 3 ) + String.fromC…

文字列中の改行の扱い

スクリプトエディタや、Automator の Javascript から、文字列中に改行を埋め込むには、"\n" ではなくString.fromCharCode(13)を使う必要があるようだ。 つまり、エスケープ文字は無視されるためString.fromCharCode(n)を使う。 スクリプトエディタの場合 ap…