I'm trying to parse a PDF to XML in c# and i want to extract headings like: I. INTRODUCTION, II. PAGE LAYOUT which are categorized by roman numerals from my file. I would like to write a regex to match strings like this I tried a couple of things but doesn't work, can anyone help?
|
feedback
|
|
This should do what you need: [IVXLCDM]+. [A-Z ]+ As stated here:
On the other hand, if you want to make sure that the string contains only Roman numerals and a heading name, you might want to use this:
The | |||
|
feedback
|
|
This should mostly work:
This will match headers containing numbers and symbols, but will explicitly exclude Unicode lowercase characters. Also, ensure that you use the option RegexOptions.Multiline, like so: (where
| |||
|
feedback
|