I want to split a semicolon separated string so that I can store each individual string to be used as text between XML tags using Python. The string value looks like this:
08-26-2009;08-27-2009;08-29-2009
They are just dates stored as string values
I want to iterate through each value, store to a variable and call the variable into the following code at the end:
for element in iter:
# Look for a tag called "Timeinfo"
if element.tag == "timeinfo":
tree = root.find(".//timeinfo")
# Clear all tags below "timeinfo"
tree.clear()
element.append(ET.Element("mdattim"))
child1 = ET.SubElement(tree, "sngdate")
child2 = ET.SubElement(child1, "caldate1")
child3 = ET.SubElement(child1, "caldate2")
child4 = ET.SubElement(child1, "caldate3")
child2.text = FIRST DATE VARIABLE GOES HERE
child2.text = SECOND DATE VARIABLE GOES HERE
child2.text = THIRD DATE VARIABLE GOES HERE
Any help is appreciated.
Split returns a list as follows