Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stdstring

why is std::copy faster than std::string constructor?

c++ performance std stdstring

returning const char* to char* and then changing the data

c++ pointers stdstring

Is it valid for an std::string to contain a null character '\0' not at its end? [duplicate]

C++/CLI String Conversions

Is it safe to pass an `std::string` temporary into an `std::string_view` parameter?

How do I convert vectors of various types to std::string?

how to remove the end newline characters using c++? [duplicate]

c++ trim stdstring

Appending formatted content to a `std::string` without creating temporaries

c++ stdstring

How to most efficiently construct a std::string from char * with size

c++ std stdstring

Using zlib for std::string and stringstream

What happens when a string literal is passed to a function accepting a const std::string & in C++?

c++ stdstring

Can I convert an int to string then count the number of digits?

c++ stdstring

How can I get a pointer to the first element of an std::string even if it is empty

c++ stdstring

sprintf with %s and std::string gives gibberish

Passing the results of `std::string::c_str()` to `mkdtemp()` using `const_cast<char*>()`

string to flyweights of string conversion: Better performance option

Negating expression in if statement inside macro gives odd results

c++ std stdstring

if(str1==str2) versus if(str1.length()==str2.length() && str1==str2)

c++ performance stl stdstring

How to efficiently copy a std::string into a vector

c++ stdvector stdstring