I am using Python and need to find and retrieve all character data between tags:
I need this stuff
I then want to output
def value_tag(s): i = s.index('>') s = s[i+1:] i = s.index('<') s = s[:i] return s