i have a regex that is half working to count all strings which have odd numbers of X's.
^[^X]*X(X{2}|[^X])*$
This works for nearly all cases:
X
XXX
XAA
AXXX
AAAX etc
but fails when typing something like:
XAXAXA
I need an extra clause that allows for strings which have alternating X's that is XAXA. Contiguous X patterns are already being mapped by X{2}*.
X, e.g.AXXXAAXXX. But in short, I don't believe this task is possible. – Oli Charlesworth Jan 19 '11 at 20:53