Data update
This commit is contained in:
parent
ed705008a8
commit
0df55f9f24
2196 changed files with 32999 additions and 3075 deletions
32
Task/XML-Input/Swift/xml-input-1.swift
Normal file
32
Task/XML-Input/Swift/xml-input-1.swift
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
import Foundation
|
||||
|
||||
let xmlString = """
|
||||
<Students>
|
||||
<Student Name="April" Gender="F" DateOfBirth="1989-01-02" />
|
||||
<Student Name="Bob" Gender="M" DateOfBirth="1990-03-04" />
|
||||
<Student Name="Chad" Gender="M" DateOfBirth="1991-05-06" />
|
||||
<Student Name="Dave" Gender="M" DateOfBirth="1992-07-08">
|
||||
<Pet Type="dog" Name="Rover" />
|
||||
</Student>
|
||||
<Student DateOfBirth="1993-09-10" Gender="F" Name="Émily" />
|
||||
</Students>
|
||||
"""
|
||||
if let xmlData = xmlString.data(using: .utf8) {
|
||||
do {
|
||||
let doc = try XMLDocument(data: xmlData)
|
||||
print("Using XPath:")
|
||||
for node in try doc.nodes(forXPath: "/Students/Student/@Name") {
|
||||
guard let name = node.stringValue else { continue }
|
||||
print(name)
|
||||
}
|
||||
print("Using node walk")
|
||||
if let root = doc.rootElement() {
|
||||
for child in root.elements(forName: "Student") {
|
||||
guard let name = child.attribute(forName: "Name")?.stringValue else { continue }
|
||||
print(name)
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
debugPrint(error)
|
||||
}
|
||||
}
|
||||
13
Task/XML-Input/Swift/xml-input-2.swift
Normal file
13
Task/XML-Input/Swift/xml-input-2.swift
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
~ % ./XMLInput
|
||||
Using XPath:
|
||||
April
|
||||
Bob
|
||||
Chad
|
||||
Dave
|
||||
Émily
|
||||
Using node walk
|
||||
April
|
||||
Bob
|
||||
Chad
|
||||
Dave
|
||||
Émily
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
import "/pattern" for Pattern
|
||||
import "/fmt" for Conv
|
||||
import "./pattern" for Pattern
|
||||
import "./fmt" for Conv
|
||||
|
||||
var xml =
|
||||
"<Students>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue