So, I think I know what the RegEx + symbol does (looks for the preceding character 1 or more times). I think I get how to use it...
echo "This is a good sentence." | awk '/go+d/ {print $0}'
(finds good, gooood, gooooooood)
But, I'm having trouble coming up with a practical, objective reason for wanting to look for this kind of repetition. I need scenarios to give its purpose some context for explanation to others.
Thanks for helping and letting me lean on your knowledge and experiences.
\s+
. Think about character classes rather than individual characters. – B Layer Oct 10 '17 at 02:28