I was looking around for a way to grab words around a found match, but they were much too complicated for my case. All I need is a regex statement to grab, lets say 10, words before and after a matched word. Would anybody be able to help me set up a pattern to do that?
For example, let's take the sentence (won't make sense):
sentence = "The hairy yellow, stinkin' dog, sat round' the c4mpfir3 and ate the brown/yellow smore's that the kids(*adults) were makin."
and let's say we want to match 3 words before and after smore's (already cleaned to match). The output would be:
"ate the brown/yellow smore's that the were"
now lets take the example of wanting to take one word before and after stinkin' :
"yellow, stinkin' dog"
Another example. "sat":
"yellow, stinkin' dog, round' the and
Let's make a new sentence now:
sentence = "If the problem is still there after 30 minutes. Give up"
If I was trying to match the word there, and take 2 words before and after the output would be:
"is still there after minutes"
I know it's not 10, but I think you get the example? If not, let me know and I will provide more. As I made this, I realized how much more I want than I originally thought. I'm rather new to regex, but I'm going to give the pattern a shot.
('[a-zA-Z\'.,/]{3}(word_to_match)[a-zA-Z\'.,/]{3}')
Thanks