Ruby將字符串像數(shù)字一樣處理.我們用單引號(hào)('...')或雙引號(hào)("...")將它們括起來(lái).
ruby> "abc"
"abc"
ruby> 'abc'
"abc"
單引號(hào)和雙引號(hào)在某些情況下有不同的作用.一個(gè)由雙引號(hào)括起來(lái)的字符串允許字符由一個(gè)前置的斜杠引出,而且可以用#{}內(nèi)嵌表達(dá)式.而
單引號(hào)括起來(lái)的字符串并不會(huì)對(duì)字符串作任何解釋;你看到的是什么便是什么.幾個(gè)例子:
ruby> print "a/nb/nc","/n"
a
c
nil
ruby> print 'a/nb/n',"/n"
a/nb/nc
nil
ruby> "/n"
"/n"
ruby> '/n'
"//n"
ruby> "/001"
"/001"
ruby> '/001'
"//001"
ruby> "abcd #{5*3} efg"
"abcd 15 efg"
ruby> var = " abc "
" abc "
ruby> "1234#{var}5678"
"1234 abc 5678"
Ruby的字符串操作比C更靈巧,更直觀.比如說(shuō),你可以用+把幾個(gè)串連起來(lái),用*把一個(gè)串重復(fù)好幾遍:
ruby> "foo" + "bar"
"foobar"
ruby> "foo" * 2
"foofoo"
相比之下,在C里,因?yàn)樾枰_的內(nèi)存管理,串聯(lián)字符串要笨拙的多:
char *s = malloc(strlen(s1)+strlen(s2)+1);
strcpy(s, s1);
strcat(s, s2);
/* ... */
free(s);
但對(duì)于Ruby,我們不需要考慮字符串的空間占用問(wèn)題,這令到我們可以從煩瑣的內(nèi)存管理中解脫出來(lái).
下面是一些字符串的處理,
串聯(lián):
ruby> word = "fo" + "o"
"foo"
重復(fù):
ruby> word = word * 2
"foofoo"
抽取字符(注意:在Ruby里,字符被視為整數(shù)):
ruby> word[0]
102 # 102 is ASCII code of `f'
ruby> word[-1]
111 # 111 is ASCII code of `o'
(負(fù)的索引指從字符串尾算起的偏移量,而不是從串頭.)
提取子串:
ruby> herb = "parsley"
"parsley"
ruby> herb[0,1]
"p"