接受用户输入
first_name = gets.chomp
首字母大写
first_name.capitalize!
字母变大写
first_name.upcase!
字母变小写
first_name.downcase!
多行输出
print <<EOF # 多行输出 EOF
注释
# 我是注释
变量获取
#{first_name}
变量
if/else
if a < b puts '1' elsif b < a puts '2' end
类
class Classname def functionname(params) puts params end end class1 = Classname.new class1.functionname('1') unless unless false print 'ok' else print 'no' end
是否包含字符
print 'puts' user_input = gets.chomp user_input.downcase! if user_input.include?"s" print 'has s' end
替换字符
# s -> th user_input.gsub!(/s/,"th")
在字符串中输出变量值
puts 'okok #{user_input}'
while
counter = 1 while counter < 11 puts counter counter = counter + 1 end
Until
counter = 1 until counter > 10 print counter counter = counter + 1 end
+= 、 -= 、 *=、 /=
Some languages have the increment operators ++ and -- (which also add or subtract 1 from a value), but Ruby does not
for循环
# 如果 1...10 包含1-9,如果 1..10 包含1-10
for num in 1...10 puts num end
Loop Method
An iterator is just a Ruby method that repeatedly invokes a block of code.
i = 20 loop do i -= 1 print "#{ i }" break if i <= 0 end
Next
i = 20 loop do i -= 1 next if i%2 != 0 print "#{i}" break if i <= 0 end
数组
my_array = [1,2,3,4,5]
The .each Iterator迭代器
numbers = [1, 2, 3, 4, 5] # one way to loop numbers.each { |item| puts item } # another way to loop numbers.each do |item| puts item end
The .times Iterator 次数迭代器
10.times { print 'ok'})
Looping with 'While'
num = 1 while num <= 50 do print num num += 1 end
Looping with 'Until'
num = 1 until num > 50 do print num num += 1 end
Loop the Loop with Loop
num = 0 loop do num += 1 print "Ruby!" break if num == 30 end
The .split Method,
text.split(",") puts "Text to search through: " text = gets.chomp puts "Word to redact" redact = gets.chomp words = text.split(" ") words.each do |word| print word end
主要内容:实例,Ruby 程序中的空白,Ruby 程序中的行尾,Ruby 标识符,保留字,Ruby 中的 Here Document,实例,Ruby BEGIN 语句,Ruby END 语句,实例,Ruby 注释让我们编写一个简单的 Ruby 程序。所有的 Ruby 文件扩展名都是 .rb。所以,把下面的源代码放在 test.rb 文件中。 实例 #!/usr/bin/ruby -w puts "Hello, Ruby!"; 运行实例 » 在这里,假设您的 /usr/bin 目录下已经有可用的
本文向大家介绍Ruby语法,包括了Ruby语法的使用技巧和注意事项,需要的朋友参考一下 Ruby语法 Ruby的语法与Python和Perl广泛相似。关键字和花括号用于定义代码块。我们有各种关键字来定义类和对象。语法与Python和Perl的不同之处在于,所有实例变量均保持私有状态,并且只能通过访问修饰符进行访问。 让我们看一下基本语法: 变数 变量用于保存一些数据并驻留在特定的内存位置。Ruby
安装好了 Ruby 之后,让我们开始尝试编写第一个 Ruby 代码吧。 1. Hello World 首先让我们输出一个 “Hello World”。 1.1 使用irb irb 就是 interactive ruby 的缩写 ,也就是所谓的交互式Ruby。 在命令行中输入irb: $ irb irb(main):001:0> 然后我们输入“Hello World”: irb(main):00
本文向大家介绍Ruby学习笔记一,包括了Ruby学习笔记一的使用技巧和注意事项,需要的朋友参考一下 笔记: Ruby会默认返回方法中的最后一个值。 如果需要返回多个值,可以用数组来实现。 可以通过强制声明return来返回值。 基础的输出方法是用puts(输出一行),print(直接打印)。 基础的输入方法是gets(读入一行,包含行尾的'\n',可以用chomp方法消除)。 纯粹的现象对象语言,
本文向大家介绍Ruby基础语法初探,包括了Ruby基础语法初探的使用技巧和注意事项,需要的朋友参考一下 创建字符串对象有多种途径,最常用的可能是使用字符串字面量(literals),即一组单引号或双引号之间的字符序列。这两种形式的区别在于,当构造字面量时,Ruby对字符串所做处理的多少有所不同。Ruby对单引号串处理得很少。除了极少的一些例外。键入到字符串字面量的内容就构成了这个字符串的值。 Ru
我面前有一项任务,它依赖于解释文本的结构——准确地说,是一本单语词典。该词典有相当复杂的条目:多达29个唯一元素,有些元素嵌套在其他元素中。我正在为字典设计我自己的XML模式,但是我想写一个程序来自动解析我所拥有的纯文本。 我有一些Ruby的基本技能,我是一个经验丰富的正则表达式用户,但我认为创建大量的if树和非常长的正则表达式可能不是最好的主意。我已经找到了一些关于解析表达式语法、巴科斯范式和W