LL Golf Hole 1 - tinyurl.comを使ってURLを短縮する
Posted feedbacks - Other
VBScript版です。 JavaScript版の単純移植です。
1 2 3 4 5 6 7 8 9 10 11 | Function GetTinyUrlString(url)
Set xmlhttp = CreateObject("Msxml2.XMLHTTP")
xmlhttp.Open "GET", "http://tinyurl.com/api-create.php?url=" + url, False
xmlhttp.Send
result = xmlhttp.ResponseText
If LCase(result) <> "error" Then
GetTinyUrlString = result
End If
End Function
WScript.Echo(GetTinyUrlString("http://ll.jus.or.jp/2008/info/xgihyo"))
|

takano32
#6771()
[
Ruby
]
Rating-4/16=-0.25
tinyurl.com( http://tinyurl.com/ )のサービスを利用し、 http://ll.jus.or.jp/2008/info/xgihyo というURLを短縮しなさい。tinyurl.comのalias機能は使わないものとする。 なお、参考までに短縮したURLは http://tinyurl.com/5mngx8 となる。
余力のあるものはこのプログラムを短くしてみたり、短くしてみたり、短くしてみよ。
※LL Future実行委員の高野光弘です。この出題は LL Future公式の出題であり、優れたものについてはLL Golfのセッションでご紹介させていただくかもしれません。ご理解の上、ご投稿ください。また、LL Futureのチケットは現在も発売中です。よろしければ、メインイベントの方にもぜひご参加ください。
see: tinyurl.comでURLを短縮するRubyスクリプト
Rating-4/16=-0.25-0+
[ reply ]