1.
str="abc123"
puts str[0].chr => a
puts str[0] =>a的ascii码
2.中文字符串的正则表达式
文本编码:utf-8
文件第一行:#encoding:urf-8
require "iconv"
str="八万"
reg=/(.+)万/
data=reg.match(str)
result = Iconv.iconv("GBK","UTF-8",data[0])
puts result =>输出:八万
3.含中文字符串的长度
文本编码:utf-8
文件第一行:#encoding:urf-8
a = "jiayou宝贝好abc123"
a1 = a.split(//u)
puts a.split(//u).length
4.含中文的字符串转变为数组后,输出数组中的每个值:
文本编码:utf-8
文件第一行:#encoding:urf-8
require "rubygems"
require "iconv"
str="abc 一1二2三3"
puts str.split(//u).length =>10
str.split(//u).each do |d|
print Iconv.iconv('gbk','utf-8',d),' ' =>a b c 一 1 二 2 三 3 a
end