找
▪ruby api文件
▪替換字串某一部分的方法
str.gsub(pattern, replacement)
=> new_str
str.gsub(pattern)
=> new_str
"hello".gsub(/[aeiou]/, '*')
#=> "h*ll*" #將母音替換成*號
"hello".gsub(/([aeiou])/, '<\1>')
#=> "hll" #將母音加上尖括號,
\1表示保留原有字元
"hello".gsub(/./)
#=> "104 101 108 108 111 "
(這個還不懂)
▪有關ruby正規表示式的資料
▪有關ruby區間(range)的資料
做
▪列印字串"hello, world."。
▪在字串"hello, ruby."中,找出"ruby."所在下標。
▪列印你的名字十遍。
▪列印字串"this is sentence number 1.",其中的數字1會一直變化到10。
▪從檔案執行ruby程式。
Ruby第一天作業
1.列印字串 hello,world.puts hello,world.2.在字串 hello,ruby.中找到 ruby.的座標 hello,ruby.index ruby.3.列印你的名字10遍 x 10 4.列印字串 this is sentence number 1.其中數字1一直變化到10...
第一天作業
1 a float input enter a degree in celsius b 9 5 a 32 print a,celsius is b,fahrenheit 2 banjing,gao map float,input 請輸入半徑和高 split banjing float input 請...
第一天作業
筆記本 1.功能上 筆記本的重量 筆記本的型號 筆記本的拆卸 筆記本是否能上網 筆記本是否能正常重啟 2.介面上 筆記本的款式 華碩,蘋果,聯想,戴爾,惠普,華為,thinkpad 筆記本的亮度 筆記本的按鈕 筆記本的內屏的型號 3.效能上 筆記本耗電程度 筆記本續航時間 筆記本散熱是否正常 筆記本...