摘要: Ruby API 文档http://www.ruby-doc.org/core-2.0.0/Programming Rubyhttp://ishare.iask.sina.com.cn/f/22783772.html替换字符串某一部分的方法puts "hello".sub(/l/, '*')puts "hello".gsub(/l/, '*')puts "hello".sub(/lll/, '*')puts "hello".gsub(/lll/, '*' 阅读全文