“Получите узлы XML в Python” Ответ

Получите узлы XML в 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

Получите узлы XML в 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

Получите узлы XML в 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

Ответы похожие на “Получите узлы XML в Python”

Вопросы похожие на “Получите узлы XML в Python”

Больше похожих ответов на “Получите узлы XML в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования