Assume I have the following structure:-
I wanna get the index of second table after "1.3 The headline of paragraph3", means the next:-
The input is
1.3 The headline of paragraph3
The expected output
4
this is the forth table in the document, or you can say
The requested member of the collection equlas four.
The target of this for using the next code
Microsoft.Office.Interop.Word.Application app = new Microsoft.Office.Interop.Word.Application();
Documents docs = app.Documents;
Document doc = docs.Open(sDocPath, ReadOnly: true);
Table t = doc.Tables[4] // 4 that what I need

You could try with the code below in VB.NET, or simply convert it to C#.