I've a byte array contains some bytes separated by 7 and I want to split these bytes and then trim separated bytes. i.e.-14 must to remove from left and right of separated byte arrays.
Example:
input: {-14, 2, 54, 23, -14, 7, 5, 73, 12, -14, -14, 7}
output: {2, 54, 23} , {5, 73, 12}input: {34, 64, 23, -14, 43, -14, 7, 7, 42, 2, -14}
output: {34, 64, 23, -14, 43} , {42, 2}
Edit
Empty arrays should be removed. for example if 7 is in first or end of input array, it should be removed.
More example:
input: {7, 34,21,7}
output: {34,21}input: {-14,-14,7,7,34,21,-14, 7,-14}
output: {34, 21}
END EDIT