Hi there Rakesh Patel
Thanks for using QandA platform
Guess, you would need to analyze the XML structure of the Word document. Word documents in .docx
format are ZIP archives containing XML files. unzipg the .docx
file, you can access the document.xml
and comments.xml
. Tracked changes are represented by <w:ins>
(inserted text) and <w:del>
(deleted text) tags in document.xml
, You can use libraries such as python-docx
or the OpenXML SDK to programmatically parse and extract the changes and comments from these XML files. , you can integrate XML parsing with Azure AI pipelines for automated extraction and analysis.
If this helps kindly accept the answer thanks much.