Skip to main content
The National Cipher Challenge

Reply To: Suggestions

#98577
robb
Participant

@Olivers #98571 Depending on 1) if you are using a programming tool, and 2) which one, there are some packages that can provide pretty good attempts at adding spaces into the long string of de-crypted text. For example, WordNinja in Python does a pretty decent job, but not perfect, you will still need to adjust for a few words afterwards. It is also is very simple to use in python code:


import wordninja

split_words=wordninja.split('longdecrypttextstring')
print(split_words)
Report a problem