Regular Expression to Match Table Sequence in Word Document (C# .NET)

Please help me with the regular expressions to match tables sequence like this “Table 3.2.S.4.3_1”.

@HarishGali You can use a simple regular expression like the following to match the provided string:

Table\s+\d+\.\d+\.\w+\.\d+\.\d+_\d+

However, could you please attach your document here and elaborate a bit more what you need to implement?

A post was merged into an existing topic: Check If Section Break after TOC Exists in Word Document using C# .NET

A post was merged into an existing topic: Check If Section Break after TOC Exists in Word Document using C# .NET