I would like to process a textual file to find all words which contain more than N characters. Any solution in Bash (grep,awk) or Python (re) is welcomed! However, the shortest one is prefered.
|
Find all non-space constructs at least |
|||||||
|
|
Python
|
|||
|
|
|
|||
|
|
|
ouput words greater than length of 5, and the line number
|
|||||
|
Example usage (via this gist):
|
||||
|
|
|
You could use a simple grep, but it would return the entire lines:
Where N is your number. I don't know how to get the single words in grep or awk, but it's easy in Python:
Again, N is your number. big_words will be a list containing your words. |
|||
|
|
|
In this example, replace the value of 1)
2)
|
|||
|
|
|
try this:
|
|||
|
|
|
For completeness (although the regexp solution probably is better in this case):
Assuming you really mean "filter", that is each word should be printed several times. If you just want the words once each I'd do this:
|
|||
|
|
|
hello I believe that this is a nice solutino with lambda functions. first parameter is the N
|
|||
|
|
|
Pure Bash:
If your inputfile doesn't contain any globbing characters ( |
|||
|
|