在 Swift 4.2 中解码百分比编码的字符串?

Decoding Percent-Encoded String in Swift 4.2?

我正在尝试解码百分比编码的字符串,但不知道如何解码。例如:

let str = "Hello%20World"

// I want to decode 'str' to 'Hello World'

有人知道在 Swift 4.2 中执行此操作的最佳方法吗?谢谢。

要删除百分比编码,我会调用 removingPercentEncoding 方法。

https://developer.apple.com/documentation/foundation/nsstring/1409569-removingpercentencoding