/^((?!^TEST).)*$/
matches strings that DO NOT BEGIN with TEST
^((?!^(LOREM|IPSUM|LUGULUGU)).)*$
matches strings that
DO NOT BEGIN with LOREM
AND
DO NOT BEGIN with IPSUM
AND
DO NOT BEGIN with LUGULUGU
/^((?!^TEST).)*$/
matches strings that DO NOT BEGIN with TEST
^((?!^(LOREM|IPSUM|LUGULUGU)).)*$
matches strings that
DO NOT BEGIN with LOREM
AND
DO NOT BEGIN with IPSUM
AND
DO NOT BEGIN with LUGULUGU