作者:手机用户2502931803 | 来源:互联网 | 2023-09-16 16:21
Imusingthissimpleregularexpressiontovalidateahexstring:我正在使用这个简单的正则表达式来验证十六进制字符串:^[A-F
I'm using this simple regular expression to validate a hex string:
我正在使用这个简单的正则表达式来验证十六进制字符串:
^[A-Fa-f0-9]{16}$
As you can see, I'm using a quantifier to validate that the string is 16 characters long. I was wondering if I can use another quantifier in the same regex to validate the string length to be either 16 or 18 (not 17).
如您所见,我正在使用量词来验证字符串是否长16个字符。我想知道我是否可以在同一个正则表达式中使用另一个量词来验证字符串长度是16还是18(而不是17)。
4 个解决方案