ruby-uebungen/Assignment_030/solution/readme.md

539 B

Lösung: Reguläre Ausdrücke: Match





























































```ruby def tag?(text) !!(/^<.*?>$/ =~ text) end

tag?("") # -> true tag?("hugo ") # -> false tag?("<a href='xx'") # -> false tag?("

") # -> true tag?("<p") # -> false tag?("p>") # -> false