-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.rb
51 lines (36 loc) · 1.25 KB
/
strings.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
48
49
50
51
#
# Тут я буду эксперементировать со строками
#
first = 'Mary had'
second = " a little lamb"
poem = first + second
puts "The result string is #{poem}"
puts "The lenght of 'first' is #{first.length}"
puts poem.upcase
puts poem.downcase
poem[0] = 'G'
puts "and with gary #{poem}"
second_char = poem[1]
poem[0] = second_char
puts poem
n = 42
puts "The value of n is #{n}"
city = "Washington"
temp_f = 84
puts "The city is #{city} and the temp is #{5.0/9.0 * (temp_f - 32)} C"
# Неплохая идея приведения форенгейта в цельии 5/9 * (F - 32) супер :D
a_multiline_string = %Q{
The City is #{city}.
The temp is #{(5.0 / 9.0 * (temp_f - 32)).round} C
}
puts a_multiline_string
# А вот это интересно Strings не неизменые (not immutable)
string = "hello world"
result_string = string
string[0..3] = 'braz'; # отличная замена strslice str_pos и остального, язык как
# магия
puts ":: #{result_string} ::"
string = "hello world"
result_string = string
string[/[helo]+/] = 'didney'; # Отличная ебанная замена preg_replace in PHP
puts ":: #{result_string} ::"