I need help putting together a regex that will match word that ends with \"Id\" with case sensitive match.
Regex ids = new Regex(@"\w*Id\b", RegexOptions.None);
\b means "word break" and \w means any word character. So \w*Id\b means "{stuff}Id". By not including RegexOptions.IgnoreCase, it will be case sensitive.
\b
\w
\w*Id\b
RegexOptions.IgnoreCase