objective-c - 检测文本字段中的某些字符
<p><p>在文本字段中检测字符的最简单方法是什么? </p>
<p>我希望能够检测到某个字符并将该字符替换为另一个特定字符。 </p>
<p>因此,如果我在文本字段中写入...“zyxw”,我希望将其替换为“abcd”。 </p>
<p>我是一个新手,真的不知道从哪里开始或如何去做。如果有人有任何方法可以做到这一点,我将不胜感激。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>以下是使用 <a href="https://developer.apple.com/library/ios/#documentation/Foundation/Reference/NSRegularExpression_Class/Reference/Reference.html" rel="noreferrer noopener nofollow"><code>NSRegularExpression</code></a> 替换部分字符串的方法,以响应 <code>textField:shouldChangeCharactersInRange:replacementString:</code>:</p> 的 <code>UITextField</code> 委托(delegate)调用
<pre><code>- (BOOL) textField:(UITextField *)txt shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)res{
NSString *string = txt.text; // Suppose it's "Hello, zyxw!";
NSRegularExpression *regex = ;
res = ;
NSLog(@"%@", res);
}
</code></pre></p>
<p style="font-size: 20px;">关于objective-c - 检测文本字段中的某些字符,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12031751/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12031751/
</a>
</p>
页:
[1]