“Holen Sie sich Knoten von XML in Python” Code-Antworten

Holen Sie sich Knoten von XML in 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

Holen Sie sich Knoten von XML in 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

Holen Sie sich Knoten von XML in 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

Ähnliche Antworten wie “Holen Sie sich Knoten von XML in Python”

Fragen ähnlich wie “Holen Sie sich Knoten von XML in Python”

Weitere verwandte Antworten zu “Holen Sie sich Knoten von XML in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen