菜鸟教程小白 发表于 2022-12-12 12:07:25

ios - 如何将中文 Html String 转换成 NSString


                                            <p><p>为了将 html 字符串转换为 NSString,我使用以下函数</p>

<p><strong>代码片段:</strong></p>

<pre><code>+(NSString *)getStringFromHtmlString:(NSString *)str
{

    NSData *stringData = ;
    //NSHTMLTextDocumentType
    NSDictionary *options = @{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType};

    NSAttributedString *decodedString;
    decodedString = [ initWithData:stringData
                                                   options:options
                                          documentAttributes:NULL
                                                       error:NULL];


    return decodedString.string;
}
</code></pre>

<p>以上方法以适当的格式编码<strong>英文</strong>文本</p>

<p>但我想对<strong>中文</strong>文本进行编码。 </p>

<p>当中文字符串使用上述方法编码时返回</p>

<p>我想要中文文本的正确编码。<br/>
<a href="/image/drr65.png" rel="noreferrer noopener nofollow"><img src="/image/drr65.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以添加 NSCharacterEncodingDocumentAttribute:@(NSUTF8StringEncoding) 选项:</p>

<pre><code>NSDictionary *options = @{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute:@(NSUTF8StringEncoding)};
</code></pre>

<p>希望它能奏效。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将中文 Html String 转换成 NSString,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/39615367/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/39615367/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将中文 Html String 转换成 NSString