Daily bit(e) of C++ | std::quoted
Daily bit(e) of C++ #158, The C++14 utility for handling quoted strings: std::quoted.
std::quoted is a C++14 utility that simplifies reading and writing quoted strings.
When used during stream insertion, it will surround the given string with quotes and escape any internal quotes.
When used during stream extraction, the extraction will read the entire quoted string, remove surrounding quotes (if any) and unescape internal quotes.
I was about to ask you to write an item on this :)