ユーザ用ツール

サイト用ツール


ruby:library

Rubyの添付ライブラリ

open-uri

open-uri Rubyのopenをパワーアップ

require "open-uri"
 
open("http://localhost/hoge.html") { |f|
	puts f.read
}

jcode

Ruby 1.8

マルチバイト文字列の長さチェック

require 'jcode'
$KCODE = 'u'
 
str.jsize
str.jlength

おまけ

def utf8length(str)
    str.unpack("C*").inject(0){ |r, b| r += 1 if ((b & 0xC0) != 0x80); r}
end
ruby/library.txt · 最終更新: 2010/01/30 10:12 by 127.0.0.1