菜鸟教程小白 发表于 2022-12-13 08:06:04

objective-c - 搜索子字符串(NSString)


                                            <p><p>搜索由## $$ 括起来的子字符串的最佳方法是什么?例如,我有一些这样的文字:</p>

<p>Lorem <strong>##ipsum$$</strong> dolor sit amet,<strong>##consectetur$$</strong> adipisicing elit,sed do eiusmod tempor incididunt ut labore et dolore magna aliqua。 Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat。 </p>

<p>我想得到 <strong>ipsum</strong> 和 <strong>consectetur</strong> 这两个词。我知道我可以使用 NSString rangeofsubstring 方法,但是有更好的方法吗?基本上,找到一个由其他 2 个字符串包围的字符串?
谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以使用 <a href="http://developer.apple.com/library/iOS/#documentation/Foundation/Reference/NSRegularExpression_Class/Reference/Reference.html" rel="noreferrer noopener nofollow"><code>NSRegularExpression</code></a> (警告:仅限 iOS4+)使用 RegEx 模式匹配您的子字符串(例如 <code>@"##.*$$"</code> 通常)。</p>

<p>然后很容易遍历结果匹配(我首选的方式是使用枚举 block ,因为我们是 un iOS4 :-)):</p>

<pre><code>NSRegularExpression *regex = ;
) usingBlock:
    ^(NSTextCheckingResult *match, NSMatchingFlags flags, BOOL *stop) {
      NSRange range = ; // range of string in first parens
      NSString* oneWord = ;
    }
];
</code></pre>

<hr/>

<p><em>注意:如果需要支持pre-iOS4版本,可以查看<a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Predicates/Articles/pCreating.html" rel="noreferrer noopener nofollow"><code>NSPredicate</code></a>但它的灵 active 要差得多(......我猜对于iOS4之前的版本,使用rangeOfSubstring可能是最好的选择,因为NSPredicate只会告诉你字符串是否匹配但不允许你获取子字符串.. .)</em></p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 搜索子字符串(NSString),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/6525601/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/6525601/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 搜索子字符串(NSString)