Re: [Tutor] How to remove Html from list.

2005-11-17 Thread Alan Gauld
> I can not figure out what kind of expresion I need to use to find Html > code. Take a look at the regular expressions topic in my tutorial which gives an example of stripping stuff from HTML> However be aware that using regular expressions on html is never reliable and a proper parser like B

[Tutor] How to remove Html from list.

2005-11-17 Thread Laszlo Antal
Hi, This is what I would like to do.: 1: Read in an Html file as a list with readlines, 2: Loop through the list, 3: Take out the text or number that is between the Html, 4: Insert the text or number into a new list, 5: print out the new list with the text. I have a problem with section 3 ! I ca