Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Cheating a bit, but I have a generic script to read a dictionary, and execute arbitrary regexes or code blocks against it. Since I already have the dictionary in a nice format, in a default location, the command line looks like this:
w -r a -r b -r c -r d -r e -r f|perl -ple '$_=length($_)." $_"'|sort - +n|head -1

But of course, w is rather long and generic, and will take a number of regexes or a single code block.

And this misses multiple words, if several are the same length. (I get "feedback" and "boldface" from my list, at length 8.)

Interestingly, adding "g" gives only 1 word, and doesn't require sorting: "blackfigured":

w -r a -r b -r c -r d -r e -r f -r g|perl -ple '$_=length($_)." $_"'

ETA: Using the codeblock form:

w -c '$_=shift;length if/a/&&/b/&&/c/&&/d/&&/e/&&/f/'|sort -n -k 3|hea +d -1

(The output format is a bit different with codeblock, and must be sorted by field 3.)

-QM
--
Quantum Mechanics: The dreams stuff is made of


In reply to Re: Find the shortest word in the English Language with: a b c d e f by QM
in thread Find the shortest word in the English Language with: a b c d e f by usemodperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-16 18:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found