I'd like to clarify two doubts about javascript Regexs.
Is it possible to nest a second OR expression inside a primary one, as below
(v|b|c):/(value1|value2|value3|(v|b|c)alue4)/Is it possible to break lines into the same expression, as below (in order to be more readable):
/(value1| value2| value3| (v|b|c)alue4) /
Thanks so much
/(value1|value2|value3|(v|b|c)alue4)/.test("balue4")