REGEX 可以像数学表达式一样验证 Excel
我想知道如何创建一个正则表达式来验证这样的函数:
=TRIMESTER(1,2,2008)
第一个参数应该是任何整数。 第二个参数是一个不大于 4 的整数。 第三个参数是年份(4位)
I'd like to know how to create a regex to validate a function like this:
=TRIMESTER(1,2,2008)
The first parameter should be any integer.
The second parameter is an integer that shouldn't be higher than 4.
The third parameter is a year (4 digits)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是你想要的吗?
它匹配第一个参数的任意数量的数字(至少一个),第二个参数匹配 1 到 4(包括在内)之间的任何数字,最后一个参数匹配任意四位数字。
或者,如果您只想验证第二个参数,则:
但我更喜欢对此进行简单比较,如下所示:
Is this what you want?
It matches any number of digits (at least one) for the first parameter, any digit between 1 and 4 (included) for the second and any four digits for the last one.
Or, if you want to validate only the second parameter, this:
but I would prefer simple comparison for that, like this: