ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年5月1日 星期五
ruby 中文
Use Regexp to handle String 用 Regexp 拯救字串處理
1.8, 1.9
>> "中文".scan(/./u).reverse.join
=> "文中"
>> "中文".scan(/./u).size
=> 2
Unicode codepoint
另一種在 Ruby 1.8 拯救 UTF-8 字串的方式
1.8 1.9
>> "中文".unpack("U*")
=> [20013, 25991]
>> "中文".unpack("U*").reverse.pack("U*")
=> "文中"
>> "中文".unpack("U*").size
=> 2
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言