forked from gisborne/ruby-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-exercise-2.rb
47 lines (40 loc) · 1.32 KB
/
ruby-exercise-2.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
snowy = File.read 'the-man-from-snowy-river.txt'
snowy_lines = snowy.lines
split_pattern = /\W+/
snowy_words = snowy.split split_pattern
#Example
puts "Here are the lines of Snowy that start with a vowel"
snowy_lines.each do |line|
c = line[0].downcase
puts ' ' + line if c == 'a' || c == 'e' || c == 'o' || c == 'u'
end
puts
puts "Here are the lines of Snowy that have an odd number of words"
#hint: a % b is the remainder after you divide a by b (called "mod" or "modulus")
# for example 17 % 2 == 1
snowy_lines.each do |line|
if line.split(split_pattern).count % 2 == 1
puts ' ' + line
end
end
puts
puts "Here is Snowy double-spaced"
snowy_lines.each do |line|
puts line + "\n\n"
end
puts
puts "Here are all the rhyming pairs from the ends of the Snowy lines"
i = 0
while i < snowy_lines.count
#hints:
# you can access snowy_lines[i], snowy_lines[i + 1] etc each time through the loop
# split each line into words using split_pattern
# get the last word from the words using .last
# grab the last words four at a time and then print out the first and third,
# then the second and fourth
a = snowy_lines[i].split(split_pattern).last
b = snowy_lines[i + 1].split(split_pattern).last
aa = snowy_lines[i + 2].split(split_pattern).last
puts "#{a}, #{aa}"
i += 9 # This is a short way of writing i = i + 9
end