Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ValidationEngine 插件进行验证。但是我需要验证一个文本区域,用户应该在其中输入至少 200 个单词来提交表单。(但它不是必填字段)。那么如何自定义这个插件。这个插件使用正则表达式来验证字段。
匹配 n 个单词的正则表达式,后跟一个 .! 或者 ?是:
/(\w+\s){200,}\w+[.?!]/
如果你只想要 200 字:
/(\w+\s){200,}/
另请参阅正则表达式以匹配至少有 n 个单词的句子