在 swift 中用字符串中的其他字符替换多个字符是一种更简单的方法



我目前正在尝试设置一个字符串以添加到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")

有没有更有效的方法呢?

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

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

addingPercentEncoding(withAllowedCharacters:)

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

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

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

userText.addingPercentEncoding(withAllowedCharacters: .alphanumerics)

我认为使用addingPercentEncode会遇到的唯一问题是您的问题指出空格" "应该替换为下划线。 对空格 " " 使用 addingPercentEncoding 将返回 %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

理想情况下使用.urlHostAllowed字符集,因为它几乎总是有效。

textInput.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)

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

相关内容

  • 没有找到相关文章

最新更新