email = "user@example.com"
regex = /(?<username>\w+)@(?<domain>\w+)\.(?<suffix>\w+)/
match_data = regex.match(email)

puts match_data[:username]  # خروجی: user
puts match_data[:domain]    # خروجی: example
puts match_data[:suffix]    # خروجی: com