Hi,
I have juste a little experience with the regex, and now I have a little problem.
I must retrieve the strings between the .
So here is a sample :
Categories: <a href="/car/2/page1.html">2</a>, <a href="/car/nissan/">nissan</a>,<a href="/car/all/page1.html">all</a>
And this is my little regex:
re.findall("""<a href=".*">.*</a>""",string)
Well, it works , but I just want the strings between the , not the href, so how could I do this ?
thanks.