I need help putting together a regex that will match word that ends with \"Id\" with case sensitive match.
Try this regular expression:
\w*Id\b
\w* allows word characters in front of Id and the \b ensures that Id is at the end of the word (\b is word boundary assertion).
\w*
Id
\b