菜鸟教程小白 发表于 2022-12-12 18:47:09

ios - 使用 NSPredicate 或正则表达式检查一个大字符串是否包含另一个字符串


                                            <p><pre><code>NSString *string = @&#34;A long term stackoverflow.html&#34;;
NSString *expression = @&#34;stack(.*).html&#34;;
NSPredicate *predicate = ;

BOOL match =
if(match){
    NSLog(@&#34;found&#34;);
} else {
    NSLog(@&#34;not found&#34;);
}
</code></pre>

<p>我如何搜索字符串中是否存在表达式。上面的代码适用于一个词。但如果我在要搜索的字符串中添加更多单词,则不会</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果你想检查一个带有正则表达式值的字符串,那么你应该使用 <code>NSRegularExpression</code> 而不是 <code>NSPredicate</code>。</p>

<pre><code>NSRegularExpression *regex = ;
</code></pre>

<p>然后你就可以使用函数来查找匹配项了……</p>

<pre><code>NSString *string = @&#34;stackoverflow.html&#34;;

NSUInteger matchCount = ;

NSLog(@&#34;Number of matches = %d&#34;, matchCount);
</code></pre>

<p>注意:我在创建正则表达式模式方面很糟糕,所以我刚刚使用了你的模式和示例。我不知道模式是否真的会在这个字符串中找到匹配项,但如果有匹配项,它将起作用。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 NSPredicate 或正则表达式检查一个大字符串是否包含另一个字符串,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21701170/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21701170/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 NSPredicate 或正则表达式检查一个大字符串是否包含另一个字符串