正则表达式仅允许以 s 结尾的单词使用撇号
我使用此正则表达式 ^[a-zA-Z0-9]{2,20}$
来允许以下规则: - 字母 az - 字母AZ - 数字 0-9 - 输入长度必须至少为 2 个字符,最多 20 个字符。
我还想仅允许在以 s 结尾的单词末尾使用撇号。
谢谢,
I'm using this Regex ^[a-zA-Z0-9]{2,20}$
to allow the following rules:
- Letters a-z
- Letters A-Z
- Numbers 0-9
- Input length must be at least 2 characters and maximum 20 characters.
I also want to allow apostrophe only at the end of words ending with s.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此:要么是您的原始正则表达式,要么是您的原始正则表达式(减少到最多 18 个字符,您可能还想更改最小值)以
"'s"
结尾。So: either your original regex, or your original regex (reduced to maximum 18 characters, you might want to change the minimum as well) ending in
"'s"
.