« [make new document] properties付きでドキュメントを作る | トップページ | Script Debugger »

AppleScriptでの改行

Website_image20111224_00318

tell application "Jedit X"
activate
make new document with properties {encoding:"Unicode (UTF-8)", line endings:CRLF}
tell document 1

set theText to ""
set theText to theText & tab & "1行目はキャリッジリターン行頭復帰 CR (0x0D) Mac改行" & tab & return
set theText to theText & tab & "2行目はキャリッジリターン行頭復帰 CR (0x0D) Mac改行" & tab & "\r"
set theText to theText & tab & "3行目はキャリッジリターン行頭復帰 CR (0x0D) Mac改行" & tab & (ASCII character 13)

set theText to theText & tab & "4行目はリターン改行 LF (0x0A) UNIX改行" & tab & linefeed
set theText to theText & tab & "5行目はリターン改行 LF (0x0A) UNIX改行" & tab & "\n"
set theText to theText & tab & "6行目はリターン改行 LF (0x0A) UNIX改行" & tab & (ASCII character 10)

set theText to theText & tab & "7行目はリターン改行 CRLF (0x0D0x0A) Windows改行" & tab & return & linefeed
set theText to theText & tab & "8行目はリターン改行 CRLF (0x0D0x0A) Windows改行" & tab & "\r\n"
set theText to theText & tab & "9行目はリターン改行 CRLF (0x0D0x0A) Windows改行" & tab & (ASCII character 13) & (ASCII character 10)

set selected text to theText
end tell
end tell

「return.rtf」をダウンロード

「return.scpt.zip」をダウンロード

|

« [make new document] properties付きでドキュメントを作る | トップページ | Script Debugger »

JeditXAppleScript」カテゴリの記事

トラックバック


この記事へのトラックバック一覧です: AppleScriptでの改行:

« [make new document] properties付きでドキュメントを作る | トップページ | Script Debugger »