updates so far:
beautifulsoup works partly. How to remove whatever text between <style>
and <\style>
?
I am trying to write a function so that from such a text
<style>.card {
font-family: arial;
font-size: 20px;
text-align: center;
color: black;
background-color: white;
}
</style>qüestion
<hr id=answer>
änswer
to get only these out
word[0] = qüestion
word[1] = änswer
the words could contain umlauts.
I thought re
or regex
could probably do the job, but I couldn't succeed! Thanks for any help :)
`, ` – Amin May 10 '17 at 19:35