菜鸟教程小白 发表于 2022-12-12 17:53:45

ios - 在 iOS 上用多个正则表达式替换文本


                                            <p><p>我对在 <code>iOS</code> 中使用 <code>regex</code> 还是很陌生,我正在试验它。我正在努力寻找解决我遇到的问题的方法。如果之前已经回答过这个问题,或者我只是错过了一些非常明显的东西和/或使用错误的工具来实现我的目标,我会提前道歉。 </p>

<p>我有一个字符串,用户将在 <code>textfield</code> 中输入该字符串。然后如何更改它以更正字符串中包含的单词的拼写?</p>

<pre><code>NSString *userstring = @&#34;Jon Travalta&#34;;
NSError *error = NULL;
NSString *modstring = @&#34;&#34;;

NSRegularExpression *regex = [init];
regex = ;

modstring = ) withTemplate:@&#34;John Travolta&#34;];
</code></pre>

<p>这可以正常工作并纠正字符串,但假设字符串是别的东西。我想保持该正则表达式处于事件状态以检查字符串是否包含任何要纠正的元素。</p>

<p>假设字符串在上述检查之前设置为“Anthony Hopkin”。然后,我还将使用另一个 <code>regexwithpattern</code> 来检查字符串,以使用正确的名称拼写来更正那个字符串。</p>

<pre><code>regex = ;

modstring = ) withTemplate:@&#34;Anthony Hopkins&#34;];
</code></pre>

<p>这会将字符串替换为 Anthony Hopkins,即使它是第一个字符串。</p>

<p>如果我对 <code>NSRegularExpression</code> 和不同的 <code>stringByReplacingMatchesInString</code> 进行不同的分配,它不会做任何事情并且字符串会保持原来的状态。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>正则表达式不是拼写检查的正确工具。</p>

<p>在您的问题中,您想根据正则表达式进行多次替换。为清楚起见,我将遍历您的可能更正列表,一次应用一个。</p>

<pre><code>-(NSString*) naiiveSpellCheckString:(NSString*) s {

NSDictionary* corrections = @{
                              @&#34;Travolta&#34;: @&#34;Travalta|Travalte|Travelta|Travolta&#34;,
                              @&#34;John&#34;: @&#34;Jon|Johnathan|Jonathen&#34;,
                              @&#34;Anthony&#34;:@&#34;Anthoni|Antony|Tony&#34;,
                              @&#34;Hopkins&#34;: @&#34;Hopkin|Hapkin&#34;,
                              };

for (NSString* key in corrections.keyEnumerator) {

      NSError* error;
      NSRegularExpression *regex =
                                    options:NSRegularExpressionCaseInsensitive
                                    error:&amp;error];

      NSAssert1(!error, @&#34;Error parsing regex %@&#34;, );

      s = [regex stringByReplacingMatchesInString:s
                                          options:0
                                          range:NSMakeRange(0, s.length) withTemplate:key];

}

return s;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 上用多个正则表达式替换文本,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34317900/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34317900/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 上用多个正则表达式替换文本