Guys I want to write regex that matches all those strings starting with lower or ground and end with flat.. i.e. both these two would be captured in their entirety.
Example:
LOWER GROUND FLAT
GROUND FLAT
However, this does not seem to be doing the job:
^LOWER|GROUND\sFLAT$