开发者

Match string of odd length

开发者 https://www.devze.com 2023-01-10 06:29 出处:网络
Im trying to construct a regular expression to just 开发者_运维知识库match if the length of the string is odd. I have not had any success so far.

Im trying to construct a regular expression to just 开发者_运维知识库match if the length of the string is odd. I have not had any success so far.

2313432 - true

12 - false

121111111111111 - true

Thanks


You want this regular expression:

^.(..)*$

This says, match one character, then zero or more sets of two characters, all of which is anchored to the start and end of the string.


How about something like: ^(..)*.$ ?

0

精彩评论

暂无评论...
验证码 换一张
取 消