Yes, it is possible. What have you tried? This is not a complementary code writing service. We are here to help you write your code. Some people write books for a living, others write code

.
You would start with a macro that "finds" the desired strings. For example your find text would be:
.Text = "U [0-9]{4}.[0-9]{3} [HV" & ChrW(216) & "]"
When that text is found, you would insert an index entry:
ActiveDocument.Indexes.MarkEntry "Found Range", "Found Text"
Collapse and move the range passed the entry and loop to find next instance of text.
There are plenty of examples of using VBA to find text.