[AppleScript]urlencode変換【TextEdit版】
URLエンコードを
PHPを使ってエンコード・デーコードします。
urlencode — 文字列を URL エンコードする
urldecode — URL エンコードされた文字列をデコードする
文字列を URL エンコードする
urlencode
tell application "TextEdit"
tell front document
set TheTextToEncode to every paragraph
set theResult to my encodeURL(TheTextToEncode)
set every paragraph to theResult
end tell
end tell
on encodeURL(str)
set scpt to "php -r 'echo urlencode(\"" & str & "\");'"
return do shell script scpt
end encodeURL
URL エンコードされた文字列をデコードする
urldecode
tell application "TextEdit"
tell front document
set TheTextToEncode to every paragraph
set theResult to my encodeURL(TheTextToEncode)
set every paragraph to theResult
end tell
end tell
on encodeURL(str)
set scpt to "php -r 'echo urldecode(\"" & str & "\");'"
return do shell script scpt
end encodeURL
「urlencode.zip」をダウンロード[Download]
【PHP: rawurlencode - Manual】[LINK]
【PHP: urldecode - Manual】[LINK]
| 固定リンク
「CharacterEntity」カテゴリの記事
- [AppleScripts]シングルクオトのエスケープ処理(phpを使う時のお約束)(2013.05.26)
- [AppleScript]ユニコードエスケープをデコードする【その2:pythonを使う】(2013.02.10)
- [AppleScript]ユニコードエスケープをデコードする【その1:phpを使う】(2013.02.10)
- [HTML5]Named character references(2011.01.21)
- これは便利だぁCharacterEntity取得ツール(2011.01.15)
この記事へのコメントは終了しました。
コメント