2

我目前正在尝试设置一个要添加到 HTTP POST 请求的字符串,用户将在其中键入文本并点击“输入”并发送请求。

我知道多个字符 (^,+,<,>) 可以替换为单个字符 ('_'),如下所示:

userText.replacingOccurrences(of: "[^+<>]", with: "_"

我目前正在使用以下多个功能:

.replacingOccurrences(of: StringProtocol, with:StringProtocol)

像这样:

let addAddress = userText.replacingOccurrences(of: " ", with: "_").replacingOccurrences(of: ".", with: "%2E").replacingOccurrences(of: "-", with: "%2D").replacingOccurrences(of: "(", with: "%28").replacingOccurrences(of: ")", with: "%29").replacingOccurrences(of: ",", with: "%2C").replacingOccurrences(of: "&", with: "%26")

有没有更有效的方法来做到这一点?

4

3 回答 3

1

您正在做的是使用百分比编码手动编码字符串。

如果是这种情况,这将帮助您:

addingPercentEncoding(withAllowedCharacters:)

通过用百分比编码的字符替换所有不在指定集中的字符,返回由接收器生成的新字符串。

https://developer.apple.com/documentation/foundation/nsstring/1411946-addingpercentencoding

对于您的具体情况,这应该有效:

userText.addingPercentEncoding(withAllowedCharacters: .alphanumerics)

于 2018-03-01T21:15:59.877 回答
0

理想情况下使用.urlHostAllowedCharacterSet,因为它几乎总是有效。

textInput.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)

但最好的方法是结合所有可能的选项,比如这里,这将确保你做对了。

于 2018-03-01T21:24:34.343 回答
0

我认为使用addPercentEncoding 时您会遇到的唯一问题是您的问题指出空格“”应该替换为下划线。对空格“”使用添加百分比编码将返回 %20。您应该能够组合其中的一些答案,从列表中定义应该返回标准字符替换的剩余字符并获得您想要的结果。

var userText = "This has.lots-of(symbols),&stuff"
userText = userText.replacingOccurrences(of: " ", with: "_")
let allowedCharacterSet = (CharacterSet(charactersIn: ".-(),&").inverted)
var newText = userText.addingPercentEncoding(withAllowedCharacters: allowedCharacterSet)

print(newText!) // Returns This_has%2Elots%2Dof%28symbols%29%2C%26stuff
于 2018-03-01T21:32:56.963 回答