« [AppleScript]htmlentities変換【TextEdit版】 | トップページ | [AppleScript]ランダム処理【some item to 】 »

[AppleScript]urlencode変換【TextEdit版】

URLエンコードを
PHPを使ってエンコード・デーコードします。


Force4u00220928_04430

Force4u00220928_04447


Force4u00220928_04517

 

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]新しいウィンドで開きます

|

« [AppleScript]htmlentities変換【TextEdit版】 | トップページ | [AppleScript]ランダム処理【some item to 】 »

CharacterEntity」カテゴリの記事

コメント

この記事へのコメントは終了しました。