The std::string is a container for storing null-terminated narrow character strings.
std::string provides very similar functionality to std::vector while maintaining the null-termination invariant on every operation.
Additionally, std::string also provides a couple of convenience methods (find, starts/ends_with, contains, substr).
Compiler Explorer link: https://compiler-explorer.com/z/M5e4dceWf