JavaScript 正则表达式
我正在使用 ValidationEngine 插件进行验证。但我需要验证一个文本区域,用户应在其中输入至少 200 个单词才能提交表单。 (但它不是必填字段)。那么我该如何定制这个插件呢?该插件使用正则表达式来验证字段。
I am doing validation using ValidationEngine plugin. But I need to validate a text area where the user should enter minimum 200 words to submit the form. (But its not mandatory field). So how do I customize this plugin. This plugin uses regex to validate the fields.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
匹配 n 个单词的正则表达式,后跟 .!或者 ?是:
如果您只想要 200 个单词:
另请参阅 正则表达式进行匹配至少有 n 个单词的句子
The regular expression to match n words followed by a .! or ? is:
If you only want 200 words:
Also see Regex to match sentences with at least n words