菜鸟教程小白 发表于 2022-12-12 16:13:56

ios - 在 iOS 中使用正则表达式进行验证


                                            <p><p>我正在使用 iOS 中的正则表达式(Regex)对用户名字段进行验证。我不希望用户名以“guest”一词开头。我尝试了下面的代码,但它不起作用。</p>

<pre><code>;
</code></pre>

<p>想法? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以尝试使用这个正则表达式:</p>

<pre><code>^(?!guest).*$
</code></pre>

<p>解释:</p>

<p><strong>^</strong> 断言字符串开头的位置</p>

<p><strong>(?!guest)</strong> Negative Lookahead - 断言不可能匹配下面的正则表达式
guest 按字面意思匹配字符 guest(区分大小写)</p>

<p><strong>.*</strong> 匹配任何字符(换行符除外)</p>

<p>量词:*在零次和无限次之间,尽可能多次,按需回馈[贪心]</p>

<p><strong>$</strong> 在字符串末尾断言位置</p>

<p><strong>编辑:</strong></p>

<p>要使其不区分大小写,您可以尝试以下操作:</p>

<pre><code>^(?i:(?!guest)).*$
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中使用正则表达式进行验证,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32395682/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32395682/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中使用正则表达式进行验证