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
w* allows word characters in front of Id and the ensures that Id is at the end of the word ( is word boundary assertion).
w*
Id
1.4m articles
1.4m replys
5 comments
57.0k users