How can I extract 2-4 words on each side of a specific term from a string/corpus in R?
Here is an example:
I would like to extract 2 words around 'converse'.
txt <- "Socially when people meet they should converse to present their
views and listen to other people's opinions to enhance their perspective"
Output should be like:
"they should converse to present"
I guess this solves your problem:
Demo: https://regex101.com/r/tS9kB0/1
If you need other weights on either side, I guess you can see what to change.