I have a large string full of byte code so there is no spaces, I am trying to search for a specific part of that code.
For example;
byte_code = 'ergewyegt6t4738t8347tygfhfh47tg4378t58437t485t454gyfofby3gyfg34t5t6435t3465tg3465t4'
The value I am looking for is 'fhfh47tg'.
I have tried the .find String method but did not have much luck. As mentioned before, the string has no spaces.
I'd expect the output to be true once it has found the pattern within the string.