Hi there,
So I have a set of data with "CONG ###" at the end of each string. I was trying to use RegEx to remove those instances but I'm having trouble coming up with the right combination to remove it. It will always be the last 7 characters of the string. I've tried:
<\CONG (which only got rid of the word, but nothing after it)
<\CONG* (which only got rid of the word, but nothing after it)
<\CONG*\> (which only got rid of the word, but nothing after it)
<\CONG*$ (which didn't work at all)
\<\CONG+\ (which only got rid of the word, but nothing after it)
And <\CONG+\> (which only got rid of the word, but nothing after it)
Would someone be able to help me out?
Thanks!