“Zdobądź węzły XML w Python” Kod odpowiedzi

Zdobądź węzły XML w Python

import xml.dom.minidom
dom = xml.dom.minidom.parseString(document)
def getText(nodelist):
    rc = []
    for node in nodelist:
# check if it is TEXT node or not.
# if it is text node then we are getting the data.
        if node.nodeType == node.TEXT_NODE:
            rc.append(node.data)
    return ''.join(rc)
Pythonist

Zdobądź węzły XML w Python

import xml.dom.minidom
dom = xml.dom.minidom.parseString(document)
def getText(nodelist):
    rc = []
    for node in nodelist:
# check if it is TEXT node or not.
# if it is text node then we are getting the data.
        if node.nodeType == node.TEXT_NODE:
            rc.append(node.data)
    return ''.join(rc)
Pythonist

Zdobądź węzły XML w Python

import xml.dom.minidom
dom = xml.dom.minidom.parseString(document)
def getText(nodelist):
    rc = []
    for node in nodelist:
# check if it is TEXT node or not.
# if it is text node then we are getting the data.
        if node.nodeType == node.TEXT_NODE:
            rc.append(node.data)
    return ''.join(rc)
Pythonist

Odpowiedzi podobne do “Zdobądź węzły XML w Python”

Pytania podobne do “Zdobądź węzły XML w Python”

Więcej pokrewnych odpowiedzi na “Zdobądź węzły XML w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu