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)
swift510 BOT 11/5/2024 4:44 AM
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' print(comps.string) ^~~~~~~~~~~~ <stdin>:9:13: note: provide a default value to avoid this warning print(comps.string) ~~~~~~^~~~~~ ?? <#default value#> <stdin>:9:13: note: force-unwrap the value to avoid this warning print(comps.string) ~~~~~~^~~~~~ ! <stdin>:9:13: note: explicitly cast to 'Any' with 'as Any' to silence this warning print(comps.string) ~~~~~~^~~~~~ as Any