I've been for a while trying to setup a regex in mysql where it finds words from a dictionary table whose letters are in set.
Giving a set of letters i.e. "freedom" I want to get what combination of words i can obtain from such set of letters:
The result should be something like:
"free", "dom", "fee", "freedom", "red" and so on....
Is it possible using regex?
Thanks in advance.