When programming, we often have to ‘escape’ strings. A standard way to do it is to insert the backslash character (\) before some characters such as the double quote. For example, the string my title is La vie becomes my title is \La vie\ A simple routine in C++ to escape a string might look … Continue reading Escaping strings faster with AVX-512