Hey folks, I'm up late on a project and have run into an issue. I'm trying to get a lookup piece of code to read from a file and determine if there is a code that matches it to decode it with. It's similar to the Huffman Code, if that's familiar to you. It takes a character from a file, checks it, and if it doesn't match anything in the recognition code, it will add another character from the input file until it matches a code segment. However, the error I've come into has been finding out what conditional will allow me to check if a sequence has been found and returned - i.e., a piece of code in the translation segment fits the string of characters I have. I can't seem to figure out how to get it to move forward if it matches. Any help would be much appreciated!