# Lösung: Reguläre Ausdrücke: Match
```ruby
def tag?(text)
!!(/^<.*?>$/ =~ text)
end
tag?("<a href='xx'>") # -> true
tag?("hugo <jjj>") # -> false
tag?("<a href='xx'") # -> false
tag?("<p/>") # -> true
tag?("<p") # -> false
tag?("p>") # -> false
```