Open project, select the target, under Build Settings, in Header Search Paths, add $(SDKROOT)/usr/include/libxml2
Under Build Settings, in Import Paths, add $(SRCROOT)/Clibxml2 (Make sure this is the path to the Clibxml2 folder)
Usage
If you are using CocoaPods to integrate Ji. Import Ji first:
import Ji
Init with URL:
let jiDoc = Ji(htmlURL: URL(string: "http://www.apple.com/support")!)
let titleNode = jiDoc?.xPath("//head/title")?.first
print("title: \(String(describing: titleNode?.content))") // title: Optional("Official Apple Support")
Init with String:
swift let xmlString = "<?xml version='1.0' encoding='UTF-8'?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>" let jiDoc = Ji(xmlString: xmlString) let bodyNode = jiDoc?.rootNode?.firstChildWithName("body") print("body: \(String(describing: bodyNode?.content))") // body: Optional("Don
Init with Data:
```swift
let googleIndexData = try? Data(contentsOf: URL(string: “http://www.google.com")!)
if let googleIndexData = googleIndexData {
let jiDoc = Ji(htmlData: googleIndexData)!
let htmlNode = jiDoc.rootNode!
print(“html tagName: (String(describing: htmlNode.tagName))”) // html tagName: Optional(“html”)
let aNodes = jiDoc.xPath(“//body//a”)
if let firstANode = aNodes?.first {
print("first a node tagName: \(String(describing: firstANode.name))") // first a node tagName: Optional("a")
let href = firstANode["href"]
print("first a node href: \(String(describing: href))") // first a node href: Optional("http://www.google.ca/imghp?hl=en&tab=wi")
}
} else {
print(“google.com is inaccessible”)
}
let 戟文档 = 戟(htmlURL: URL(string: “https://cocoapods.org/pods/Ji")!)
let attribution = 戟文档?.xPath(“//ul[@class=’attribution’]”)?.first
print(“作者(Author): (String(describing: attribution?.content))”) // 作者(Author): Optional(“ByHonghao Zhang”)
## License
The MIT License (MIT)
Copyright (c) 2019 Honghao Zhang (张宏昊)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
t forget me this weekend!")
Init with Data:
```swift
let googleIndexData = try? Data(contentsOf: URL(string: “http://www.google.com")!)
if let googleIndexData = googleIndexData {
let jiDoc = Ji(htmlData: googleIndexData)!
let htmlNode = jiDoc.rootNode!
print(“html tagName: (String(describing: htmlNode.tagName))”) // html tagName: Optional(“html”)
let aNodes = jiDoc.xPath(“//body//a”)
if let firstANode = aNodes?.first {
print("first a node tagName: \(String(describing: firstANode.name))") // first a node tagName: Optional("a")
let href = firstANode["href"]
print("first a node href: \(String(describing: href))") // first a node href: Optional("http://www.google.ca/imghp?hl=en&tab=wi")
}
} else {
print(“google.com is inaccessible”)
}
let 戟文档 = 戟(htmlURL: URL(string: “https://cocoapods.org/pods/Ji")!)
let attribution = 戟文档?.xPath(“//ul[@class=’attribution’]”)?.first
print(“作者(Author): (String(describing: attribution?.content))”) // 作者(Author): Optional(“ByHonghao Zhang”)
## License
The MIT License (MIT)
Copyright (c) 2019 Honghao Zhang (张宏昊)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Ji 戟
Ji (戟) is a Swift wrapper on libxml2 for parsing XML/HTML.
Features
Requirements
Installation
CocoaPods
To integrate Ji into your Xcode project using CocoaPods, specify it in your
Podfile
:Then, run the following command:
Carthage
To integrate
Ji
into your Xcode project using Carthage, specify it in yourCartfile
:Swift Package Manager (SPM)
Prerequisites
Update
Package.swift
To integrate
Ji
in your project, add the proper description to yourPackage.swift
file:Manually
If you prefer not to use a dependency manager, you can integrate Ji into your project manually.
Add sources into your project:
Ji.swift
,JiHelper.swift
andJiNode.swift
in Sources/Ji folder into your project.Configure your project:
$(SDKROOT)/usr/include/libxml2
$(SRCROOT)/Clibxml2
(Make sure this is the path to theClibxml2
folder)Usage
Init with
URL
:Init with
String
:swift let xmlString = "<?xml version='1.0' encoding='UTF-8'?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>" let jiDoc = Ji(xmlString: xmlString) let bodyNode = jiDoc?.rootNode?.firstChildWithName("body") print("body: \(String(describing: bodyNode?.content))") // body: Optional("Don
Init with
Data
: ```swift let googleIndexData = try? Data(contentsOf: URL(string: “http://www.google.com")!) if let googleIndexData = googleIndexData { let jiDoc = Ji(htmlData: googleIndexData)! let htmlNode = jiDoc.rootNode! print(“html tagName: (String(describing: htmlNode.tagName))”) // html tagName: Optional(“html”)let aNodes = jiDoc.xPath(“//body//a”) if let firstANode = aNodes?.first {
} } else { print(“google.com is inaccessible”) }
let 戟文档 = 戟(htmlURL: URL(string: “https://cocoapods.org/pods/Ji")!) let attribution = 戟文档?.xPath(“//ul[@class=’attribution’]”)?.first print(“作者(Author): (String(describing: attribution?.content))”) // 作者(Author): Optional(“ByHonghao Zhang”)
Init with
Data
: ```swift let googleIndexData = try? Data(contentsOf: URL(string: “http://www.google.com")!) if let googleIndexData = googleIndexData { let jiDoc = Ji(htmlData: googleIndexData)! let htmlNode = jiDoc.rootNode! print(“html tagName: (String(describing: htmlNode.tagName))”) // html tagName: Optional(“html”)let aNodes = jiDoc.xPath(“//body//a”) if let firstANode = aNodes?.first {
} } else { print(“google.com is inaccessible”) }
let 戟文档 = 戟(htmlURL: URL(string: “https://cocoapods.org/pods/Ji")!) let attribution = 戟文档?.xPath(“//ul[@class=’attribution’]”)?.first print(“作者(Author): (String(describing: attribution?.content))”) // 作者(Author): Optional(“ByHonghao Zhang”)