I need an algorithm that can recognize words (dictionary based) in a sequence of characters that has no white spaces.
lets say for example, the sequence is:
spaceless
it should recognize space and less.
and there might be situations where more words can be recognized. its hard to give such an example but I'll give it a try:
example: spaceslight
recognized words: space and slight (1)
recognized words: spaces and light (2)
so the algorithm should be able to find those kind of variations too.