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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.