I have a file of almost ~215 MB and it has data as in below format:
<Something>
....
<Document>
</Document>
...
</Something>
Now i want to fetch chunks of data which are between Document. I created a regex as below:
@"<DOCUMENT></DOCUMENT>"
How to get chunks of data from large file to have above mentioned data:
I tried using StreamReader but I am not sure what is the best and fastest way.