Last active
September 3, 2015 21:18
-
-
Save baweaver/d02ffd9c24219ae89600 to your computer and use it in GitHub Desktop.
Abusing flip flops for HTML parsing after watching a ruby tapa ala Avdi.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IO.readlines('test.html') | |
.flat_map(&:split) | |
.select { |word| | |
true if word =~ %r{<strong>} .. word =~ %r{</strong>} | |
} | |
# => ["<strong>multiple</strong>","<strong>strong</strong>"] | |
# test.html | |
# | |
# <html> | |
# <body> | |
# <h1>Foobar</h1> | |
# | |
# <p>Let's see how this works</p> | |
# | |
# <p>With <strong>multiple</strong> seperated <strong>strong</strong> words</p> | |
# </body> | |
# </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How well does this work if the tags are nested? (like a
span
inside aspan
) :P