Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- func findingURLs() {
- let initials = ["Call me by your name https://www.amazon.de/dp/B07B58SGWP/ref=cm_sw_r_cp_api_fabc_iCJ6Fb0QVVW8Y?_encoding=UTF8&psc=1",
- "https://farfetch.onelink.me/yQyB/b9f5e5d2?af_dp=https%3A%2F%2Fwww.farfetch.com%2Fshopping%2Fitem-16119737.aspx&af_web_dp=https%3A%2F%2Fwww.farfetch.com%2Fitem-16119737.aspx Shoppen Golden Goose 'Hi Star' Sneakers",
- "Schau dir LANDSKRONA von IKEA an. Hier noch weitere Informationen: https://ingka.page.link/gqV9dAw61TqNJrne9",
- "https://www.amazon.de/DALLE-PIANE-CASHMERE-Anthrazit-Einheitsgröße/dp/B06XY2ZGBZ/ref=mp_s_a_1_13_sspa?dchild=1&keywords=dalle%2Bpiane%2Bcashmere%2Bschal&qid=1610091194&sprefix=dalle%2Bpia&sr=8-13-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUExT0hHOFRLWElYVUJBJmVuY3J5cHRlZElkPUEwOTY1ODUyOUJWWUU4MlY0SVUwJmVuY3J5cHRlZEFkSWQ9QTA0ODk2NzEzSDZNSUJOR1haREVTJndpZGdldE5hbWU9c3BfcGhvbmVfc2VhcmNoX210ZiZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU&th=1",
- "https://www.apple.com/de/shop/buy-ipad/ipad-air/64gb-grün-wifi"]
- initials.forEach { aString in
- let components = aString.components(separatedBy: .whitespacesAndNewlines)
- let url: URL? = components.compactMap {
- if $0.hasPrefix("http") {
- if let asSuch = URL(string: $0) {
- // print("As such")
- return asSuch
- } else {
- if let percentEscaped = $0.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) {
- // print("Percent Escaped")
- return URL(string: percentEscaped)
- } else {
- // print("Couldn't percent escape")
- return nil
- }
- }
- } else {
- return nil
- }
- }.first
- print("In \(aString)\n found: \(url?.absoluteString)")
- }
- }
- findingURLs()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement