14 lines
539 B
Markdown
14 lines
539 B
Markdown
|
# Lösung: Reguläre Ausdrücke: Match
|
||
|
|
||
|
<div style="border: 1px solid grey;"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div>```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
|
||
|
```
|