我从API获得这种类型的编码字符串。我不知道使用了什么编码以及如何解码它。需要在ios和android上编码。
1.5%23%23cups%23%23BISQUICK*+mix%23%23%0A0.333%23%23cup%23%23hot+water%23%23%0A3%23%23pieces%23%23eggs%23%23%0A1%23%23cup%23%23sour+cream%23%23%0A1%23%23cup%23%23Cheddar+cheese%23%23shredded%0A0.5%23%23cup%23%23green+onions%23%23sliced+%28about+4%29%0A0.5%23%23tsp%23%23onion+salt%23%23%0A1%23%23cup%23%23cooked+ham%23%23finely+chopped"
答案 0 :(得分:0)
这是一个已编码百分比的URL字符串(并非所有字符都可以在网址中发送,因此需要进行编码)。
使用此方法解码:
readResolve
This answer显示了如何将此编码和解码添加为if let decodedString = yourString.removingPercentEncoding {
// Do something with decodedString here
}
类型的扩展名。