2つの文字列を入力するプログラムを作成しようとしています。それらが一致する場合、同じ長さ2の部分文字列を含む位置の数を返します。
例:string_match('xxcaazz'、'xxbaaz')→3 "xx" "aa" "az"私の質問は、検証に使用するメタ文字です。
これが私が思いついたものです
puts "enter word"
a = STDIN.gets
a.chomp!
puts"enter word"
b = STDIN.gets
b.chomp!
if a == /word/ or b == /word/ then
puts str.match(/{a} {b}/) + "equal"
end