正则表达式仅允许以 s 结尾的单词使用撇号

发布于 2024-11-27 04:13:30 字数 155 浏览 4 评论 0原文

我使用此正则表达式 ^[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞎闹 2024-12-04 04:13:30
^([a-zA-Z0-9]{2,20}|[a-zA-Z0-9]{2,18}'s)$

因此:要么是您的原始正则表达式,要么是您的原始正则表达式(减少到最多 18 个字符,您可能还想更改最小值)以 "'s" 结尾。

^([a-zA-Z0-9]{2,20}|[a-zA-Z0-9]{2,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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文