ruby-uebungen/Assignment_034/solution
Thomas Smits 25d5ac7ffd Initial commit 2023-05-23 09:19:31 +02:00
..
readme.md Initial commit 2023-05-23 09:19:31 +02:00

readme.md

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