I am simply looking how to detect and odd or even amount (quantifier), or a certain amount (not a range) of a character in a text file. For example this regular expression detects an odd digit:
[1,3,5,7,9]
This regular expression detects an amount (1 through 9) of digits:
\d{1,9}
I would like to find an odd amount of digits.
\d{1|3|5|7|9}
However this syntax is not the right one. Could anyone give me the right answer?