■ Document 클래스의 getElementsByTagName 메소드를 사용해 태그명에 일치하는 엘리먼트 리스트를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import xml.dom.minidom xmlString = """ <item> <name>test</name> </item> """ document = xml.dom.minidom.parseString(xmlString) nodeList = document.getElementsByTagName("name") print(nodeList) """ [<DOM Element: name at 0x1aca41136d0>] """ |