I am trying match a formula using regular expressions.
- The formula should strictly contain these three letters only(L,W,H).
- Should allow only product operation i.e
(L*W*H, L*W, L*H etc). - Also instead of adding squared values, It should allow something
like this
(L*L*L*W*W*H*H) - Also it should not allow the asterisk symbol at the end.
I tried myself and came up with this
^([L|W|H]\*{0,1})?(([L|W|H]\*{0,1}){0,9})?([L|W|H]{0,1})$
But this allows adding letters continuously something like "LLL*WW*HHH**". Please help me out guys.