This is the following bytestring
b'removethis\x00\x002020.10.14\x00\xf2\x00^\n\x84>\x01\x00\x10\x01\x14\x00\x00\x00\x8d\xec\xdc0\x1bo\xe7\x15^\n\x84>\x01\x00\x10\x01\x04\x9b_\x18'
I want everything before my first \x00 removed so my substring remove this gets removed basically.
So the problem is that I only want everything before my first \x00 to get removed not any future \x00's that may come in a string and I'm not sure how to do this.