Displaying 3 results from an estimated 3 matches for "jqnatividad".
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
I would also look at https://pandoc.org perhaps which can
export a number of formats...
And for spreadsheets https://github.com/jqnatividad/qsv is my
goto weapon. Can also read and write XLSX and others.
A sample document or two would always be helpful...
el
On 29/12/2023 21:01, CALUM POLWART wrote:
> It sounded like he looked at officeR but I would agree
>
> content <- officer::docx_summary("filename.docx")...
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
...n, but I could upload the file somewhere if that
would help? Any ideas for a good location to do so?
On 29/12/2023 20:25, Dr Eberhard W Lisse wrote:
> I would also look at https://pandoc.org perhaps which can
> export a number of formats...
>
> And for spreadsheets https://github.com/jqnatividad/qsv is my
> goto weapon. Can also read and write XLSX and others.
>
> A sample document or two would always be helpful...
>
> el
>
> On 29/12/2023 21:01, CALUM POLWART wrote:
>> It sounded like he looked at officeR but I would agree
>>
>> content <- office...
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
It sounded like he looked at officeR but I would agree
content <- officer::docx_summary("filename.docx")
Would get the text content into an object called content.
That object is a data.frame so you can then manipulate it. To be more
specific, we might need an example of the DF
You can loop this easily with a for statement although there are people who
prefer a non-for approach to