Ruby 문법 노트
3477 단어 ruby 문법
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 MethodAn 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