如何解码 ios 中的 html 数据?
How do decode html data in ios?
我有以下形式的数据:
%3Cp%3E%3Cstrong%3Ee-AWB+and+e
我必须解码并显示在 Webview/UILabel!
我试过了 - URL Decoding,但它对我不起作用
使用这个 -
- (NSString *)URLDecode:(NSString *)htmlString
{
NSString *decodedURL = [htmlString stringByReplacingOccurrencesOfString:@"+" withString:@" "];
decodedURL = [decodedURL stringByRemovingPercentEncoding];
return decodedURL;
}
这里你得到的输出是 - <p><strong>e-AWB and e
我有以下形式的数据:
%3Cp%3E%3Cstrong%3Ee-AWB+and+e
我必须解码并显示在 Webview/UILabel!
我试过了 - URL Decoding,但它对我不起作用
使用这个 -
- (NSString *)URLDecode:(NSString *)htmlString
{
NSString *decodedURL = [htmlString stringByReplacingOccurrencesOfString:@"+" withString:@" "];
decodedURL = [decodedURL stringByRemovingPercentEncoding];
return decodedURL;
}
这里你得到的输出是 - <p><strong>e-AWB and e