Wolfram Language Paclet Repository

Community-contributed installable additions to the Wolfram Language

Primary Navigation

    • Cloud & Deployment
    • Core Language & Structure
    • Data Manipulation & Analysis
    • Engineering Data & Computation
    • External Interfaces & Connections
    • Financial Data & Computation
    • Geographic Data & Computation
    • Geometry
    • Graphs & Networks
    • Higher Mathematical Computation
    • Images
    • Knowledge Representation & Natural Language
    • Machine Learning
    • Notebook Documents & Presentation
    • Scientific and Medical Data & Computation
    • Social, Cultural & Linguistic Data
    • Strings & Text
    • Symbolic & Numeric Computation
    • System Operation & Setup
    • Time-Related Computation
    • User Interface Construction
    • Visualization & Graphics
    • Random Paclet
    • Alphabetical List
  • Using Paclets
    • Get Started
    • Download Definition Notebook
  • Learn More about Wolfram Language

LittleChildPaclet

Guides

  • Assumptions and Domains
  • Linguistic Data
  • Number Digits
  • Prime Numbers
  • Start Here Wolfram Challenge Functions
  • String Patterns
  • Wolfram Challenges Algorithms
  • Wolfram Challenges Computational Knowledge
  • Wolfram Challenges Geography
  • Wolfram Challenges Mathematics
  • Wolfram Challenges Words and Linguistics
  • Working with Sequences

Symbols

  • AliquotSequence
  • AlmostPalindrome
  • Anagrams
  • AntipodalCity
  • AntipodeAboveSeaLevelQ
  • BabbageSquares
  • BalancedParentheses
  • BalancedTernary
  • ButterflyString
  • CaesarDecrypt
  • CatalanUnrank
  • Coins
  • CompleteDictionary
  • DigitalRoot
  • FizzBuzz
  • IntegerPalindromeQ
  • MaxRomanLength
  • MaxRomanNumeralValue
  • NonNegativeIntegerQ
  • NumberTriangle
  • OddBeforeEven
  • PairsAddToHundred
  • PositiveIntegerQ
  • RepeatandEndingPrimes
  • SameStartEndWords
  • SayHello
  • SquareSum
  • StringPatternQ
  • ThreeFive
  • ToMorseCode
  • TwoAndThreePointers
  • WordListLookup
PeterBurbery`LittleChildPaclet`
CompleteDictionary
​
CompleteDictionary
[]
gives all words that the Wolfram Language has
​
​
CompleteDictionary[s]
looks up words based on string pattern
s
​
Details and Options

Examples  
(1)
Basic Examples  
(1)
Find all words that have a c and an s but not a c in position 1 and also no s in position 5 with five letters and also no a and also no e and also no r and contains c and s, then find the most frequent words based on this Wordle clue
:
In[1]:=
Select[MatchQ[s_/;MatchQ[Characters[s],{OrderlessPatternSequence["s"..,"c"..,___...]}]]]
CompleteDictionary
[s:Alternatives@@Complement[Alphabet[],{"a","e","r","c"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r","s"}]]
Out[1]=
{disco,music,psych,schmo,scion,scoff,scold,scoop,scoot,scout,scowl,scuff,scull,shock,shuck,sicko,slick,smock,snick,sonic,spick,spicy,stick,stock,stoic,stuck}
With more information, narrow down more possibilities
:
In[2]:=
Select[MatchQ[s_/;MatchQ[Characters[s],{OrderlessPatternSequence["s"..,"c"..,___...]}]]]
CompleteDictionary
[s:Alternatives@@Complement[Alphabet[],{"a","e","r","c","b","l","i","n","d"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r","b","l","i","n","d"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r","b","l","i","n","d"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r","b","l","i","n","d"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r","s","b","l","i","n","d"}]]
Out[2]=
{psych,schmo,scoff,scoop,scoot,scout,scuff,shock,shuck,smock,stock,stuck}
Use more information to narrow down the list
Contents cannot be rendered at this time; please try again later
:
In[3]:=
Select[MatchQ[s_/;MatchQ[Characters[s],{OrderlessPatternSequence["s"..,"c"..,___...]}]]]
CompleteDictionary
[s:"s"~~Alternatives@@Complement[Alphabet[],{"a","e","r","b","l","i","n","d","h","k"}]~~"o"~~Alternatives@@Complement[Alphabet[],{"a","e","r","b","l","i","n","d","h","k","c"}]~~Alternatives@@Complement[Alphabet[],{"a","e","r","s","b","l","i","n","d","h","k"}]]
Out[3]=
{scoff,scoop,scoot,scout}
Solve the Wordle:
In[4]:=
Contents cannot be rendered at this time; please try again later
The Wordle search could have been improved by using WordFrequencyData, but it was too slow.
SeeAlso
"XXXX"
""

© 2025 Wolfram. All rights reserved.

  • Legal & Privacy Policy
  • Contact Us
  • WolframAlpha.com
  • WolframCloud.com