Reply To: Suggestions
The mystery of the silver bullet › Forums › The Intelligence Room › Suggestions › Reply To: Suggestions
22nd November 2024 at 2:20 pm
#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)