I'm struggling to find lines that contain 3 or more of a specified character.
Example Problem:
I want to filter this list to output all lines that contain at least 3 plus signs
Example Dataset:
+1a
+1a +2
+1a +2 +3
+1a +2 +3 +4
+1a +2 +3 +4 +5
Desired Output:
+1a +2 +3
+1a +2 +3 +4
+1a +2 +3 +4 +5
I need to check for plus signs. Thanks for your help.