I have some data of type std::vector<uint8_t>. I would like to interpret it as a string and do some sub-string check on it.
It can be done by converting it to std::string which will cause copying the data. Is it possible to somehow convert it to std::string_view and do search on it to avoid copying it.