How can I code regex to find a specific word that doesn’t have any letters in front or behind it? For example, I need it to find the word “Party”, but it gets confused with PartyID. The regex needs to find the word as long as there are no letters at the end of the word. special characters like space _.*{[?! are ok.
I have this so far:
[.\s"]Party
.Party.com = OK
(.PartyID.com = Not OK