I've seen a few answers that deal with this question but was unable to get them to work.
What is a regex that would match "LOGGED_IN"
but not match "NOT_LOGGED_IN"
?
I've seen a few answers that deal with this question but was unable to get them to work.
What is a regex that would match "LOGGED_IN"
but not match "NOT_LOGGED_IN"
?
^LOGGED_IN$ is first to come to mind