在Ruby中使用正則表達式非常簡單,可以使用=~
或者match
方法來匹配正則表達式。
=~
操作符:str = "Hello, World!"
if str =~ /Hello/
puts "Matched!"
else
puts "Not matched"
end
match
方法:str = "Hello, World!"
if /Hello/.match(str)
puts "Matched!"
else
puts "Not matched"
end
除了匹配,還可以使用正則表達式來替換字符串中的內容:
str = "Hello, World!"
new_str = str.gsub(/Hello/, "Hi")
puts new_str
以上就是在Ruby中使用正則表達式的基本方法,通過這些方法可以方便地對字符串進行匹配和替換操作。