Avatar
Avatar
Iceman
@swift-6.0.3 @swift-5.10.1 import Foundation let url = URL(string:"s:/foo[]")! let comps = URLComponents(url: url, resolvingAgainstBaseURL: true)! print(url) print(url.path) print(comps.string) print(comps.path) print(comps.percentEncodedPath)
s:/foo%5B%5D /foo[] Optional("s:/foo%5B%5D") /foo[] /foo%5B%5D<stdin>:9:7: warning: expression implicitly coerced from 'String?' to 'Any' 7 | print(url.path) 8 | 9 | print(comps.string) | | |- note: provide a default value to avoid this warning | | |- note: force-unwrap the value to avoid this warning | | `- note: explicitly cast to 'Any' with 'as Any' to silence this warning | `- warning: expression implicitly coerced from 'String?' to 'Any' 10 | print(comps.path) 11 | print(comps.percentEncodedPath)