Lets say I have a bytes like this:
"b'ab' b'xy'"
Now I want to split it into two separate bytes and then will convert it into string. The out should look like:
"b'ab'"
"b'xy'"
I tried javascript slicing but it won't work as this is a stream of data. So previously if I have these "b'ab' b'xy'" bytes then in the next turn it could be "b'abc' b'xyz'"
b'…'?