std::string is the C++ standard library's byte-based "string" type, defined in the header.
0
votes
1answer
24 views
How to correctly exit a for loop and run the next conditional statement
UPDATE: Thank you for the help. Writing a demo that you could run did help me solve the issue but not in the way that I expected. I think this is a compiler optimization rather than a bug. When the ...
0
votes
1answer
33 views
implement reverse_iterator for my string class (also rbegin() and rend() methods)
Below is code for my String class. I want to implement reverse_iterator and rbegin() and rend() methods.
Have pasted code for assign method.
String::reverse_iterator rbegin = str2.rbegin();
...
1
vote
3answers
42 views
Iterating over list of pairs, the list being in an array
I have searched the farthest reaches of the universe (aka the internet) and have not found a single hint as to how to solve my problem. So I come to you.
I am trying to iterate over a list that ...
10
votes
2answers
91 views
std::string copy constructor NOT deep in GCC 4.1.2?
I wonder if i misunderstood something: does a copy constructor from std::string not copy its content?
string str1 = "Hello World";
string str2(str1);
if(str1.c_str() == str2.c_str()) // Same ...
7
votes
4answers
138 views
How do I cast `std::string` to `std::vector<unsigned char>` without making a copy?
There is a library function I want to call whose signature is:
bool WriteBinary(const std::vector<uint8_t> & DataToWrite);
I have an std::string variable, I want to send it this function ...
-2
votes
1answer
65 views
Sorting strings by characters first
I am using std::map in C++ and it's sorting keys in alphabetical way, like this:
AAA, AA0, AA1, AAB, AC1 = AA0->AA1->AAA->AAB->AC1
But I would like to sort it in a different way:
AAA, ...
1
vote
2answers
98 views
C++ : Does char pointer to std::string conversion copying the content?
When I convert a char* to std::string using the constructor:
char *ps = "Hello";
std::string str(ps);
I know that std containers tend to copy values when they are asked to store them.
Is the whole ...
0
votes
1answer
16 views
Char array size when using certain library functions
When using some library functions (e.g. strftime(), strcpy(), MultiByteToWideChar()) that deal with character arrays (instead of std::string's) one has 2 options:
use a fixed size array (e.g. char ...
0
votes
1answer
55 views
Interesting std::copy from std::vector to std::string behavior
I was messing around with ostream_iterator and realized that when specifying a delimiter, it outputs one too many. So instead I went with ostringstream so I could modify the string before outputting ...
1
vote
3answers
63 views
Converting double to string function - memory issues?
I find myself having to std::cout various double variables.
I've made a simple function to convert a double to a std::string, which I can then use with std::cout etc.
// Convert a double to a string.
...
0
votes
1answer
43 views
CPP string constructor find and append null characters
In C++ strings are copied until a NULL character is received while feeding in a sequence of characters. But if you supply the number of characters to be read, will it copy past the NULL character? I ...
1
vote
1answer
68 views
SHFileOperation copying folders using strings
I am trying to copy a folder by SHFileOperationA function. Here is my code.
int main() {
SHFILEOPSTRUCTA sf;
int result;
string source = "D:\\check\\folder4";
string dest = ...
4
votes
2answers
123 views
Can I free the memory of the char* string when I assign it to std::string?
Can I free the memory of the char* pointed string after I have convert it to a std::string?
For example:
char* c_string;
c_string = strdup("This is a test");
std::string cpp_string;
...
2
votes
1answer
72 views
Reading a specific number of characters from C++ stream into std::string
I'm pretty familiar with most of C++ but one area I've avoided has been IO streams, mainly because I've been using it on embedded systems where they're not appropriate. Recently I've had to become ...
0
votes
1answer
115 views
NCurses read from stdin to std::string, C++
I'm writing a Linux app in which I must read a password from stdin using ncurses. I can read into a C-style string with no problem, however, this poses a security risk, so I must find a way to read ...
4
votes
4answers
155 views
Replace whole words from a sequence of words in a string without using libraries and C++11
I want to replace some words without using boost libraries or other .hpp's.
My first attempt was to make a copy of the string, and it was quite inefficient. I'm not very proud of it, so I will post my ...
1
vote
1answer
53 views
QString and stdstring combination doesnt work in std::stringstream - compile error
```
#include <iostream>
#include <sstream>
#include <QString>
class Printer {
public:
inline std::ostream& operator<<(const std::string& str) {
stream << ...
0
votes
2answers
119 views
Put first boost::regex match into a string [duplicate]
Somehow, I've failed to find out, how to put only the first occurrence or regular expression to string. I can create a regex object:
static const boost::regex e("<(From ...
0
votes
3answers
130 views
c++ implicit conversion of string to char* matches wrong function signature
I am writing a program which is supposed to handle both c strings (char*) and c++ strings (std::string). I have isolated by concern to the example below.
#include <iostream>
#include ...
2
votes
2answers
95 views
std::string constructor throws std::out_of_range exception
Using VS 2012.
I was making hangman. Anyway, I had a function to get a std::string that was the same length as the current word being guessed, but filled with underscores. (as in, blanks).
The ...
0
votes
2answers
81 views
std::string.c_str() returning a weird characters
In my project, I use to load textures by specifying its file name. Now, I made this function const char* app_dir(std::string fileToAppend); that returns the mains argv[0] and change the application ...
10
votes
2answers
226 views
How can I adapt the Levenshtein Distance algorithm to limit matches to a single word?
I'm using the Levenshtein Distance algorithm in C++ to compare two strings to measure how close they are to each other. However, the plain Levenshtein Distance algorithm does not distinguish word ...
0
votes
4answers
250 views
How to retrieve the specific element from an array of std::strings as a LPCSTR? [duplicate]
In C++,
I've got a string array variable called:
...
/* set the variable */
string fileRows[500];
...
/* fill the array with a file rows */
while ( getline(infile,sIn ) )
{
fileRows[i] = sIn;
...
1
vote
1answer
142 views
How to capitalize a word in a C++ string?
I have a std::string and wish for the first letter to be capitalized and the rest lower case.
One way I could do this is:
const std::string example("eXamPLe");
std::string capitalized = ...
1
vote
3answers
124 views
How to construct a std::string from a std::vector<string>?
I'd like to build a std::string from a std::vector<std::string>.
I could use std::stringsteam, but imagine there is a shorter way:
std::string string_from_vector(const ...
2
votes
3answers
305 views
C++ - std::wstring to std::string - quick and dirty conversion for use as key in std::map
I'm looking for a bit of advice on the best way to convert a std::wstring to std::string - but a quick and dirty conversion for use as a key in an std::map<std::string, int> object.
The map is ...
5
votes
1answer
240 views
What are some algorithms for comparing how similar two strings are?
I need to compare strings in C++ to decide whether they represent the same thing. This relates to case titles entered by humans where abbreviations and other small details may differ. For example, ...
0
votes
0answers
35 views
How can a boost meta format be succintly expressed?
I am using boost::format to create a format string for a format string. Presently I do it like this:
int count = 3;
std::string digits = "9999999999999999999999";
...
-4
votes
1answer
70 views
Lack of Implicit Conversions for Strings and STL Containers
Why doesn't C++ have implicit conversion to bool defined for std::string and STL containers when writing code like
if (!x.empty()) { ... }
instead of more shorter
if (x) { ... }
when x is of ...
0
votes
4answers
255 views
Converting NSString to std::string
I try to pass a NSString to a C++ function, but I only get the first letter. Here is the code:
#import <Foundation/Foundation.h>
#import <string>
int main(int argc, const char * argv[])
{
...
0
votes
4answers
72 views
What is std::string(itr, itr) supposed to do?
The web site cplusplus documentation for std::string constructor taking two input iterators states in part:
Copies the sequence of characters in the range [first,last), in the same order.
...
0
votes
2answers
55 views
C++ Unicode Issue
I'm having a bit of trouble with handling unicode conversions.
The following code outputs this into my text file.
HELLO??O
std::string test = "HELLO";
std::string output;
int len = ...
1
vote
0answers
17 views
marshal_as returns the wrong value
In c++, I'm trying to write my own basic logical expression evaluator and I'm having an issue converting String^ to std::string value.
Here is a snippet of my code:
String^ pattern = "[a-zA-Z ...
0
votes
1answer
101 views
Why shouldn't I use std::string.c_str() as a buffer?
While this may well be a stupid question, I saw something about how you shouldn't do this, despite the fact that it is allowed in C++ 11, but I don't quite get why. Could anyone explain why this is?
0
votes
2answers
179 views
C++ Passing a long string to constructor or setter
I have a class with a Glib::ustring member (if you're not familar with it, assume it's std::string) which is expected to contain a long string, i.e. at lest one paragraph, maybe a few more. Maybe even ...
0
votes
0answers
60 views
boost lexical_cast and string built from vector<char> throws exception
I am working with a protocol which provides message length in text format. Digits are stored in a std::vector<char> and then a std::string is built from it.
I am using ...
1
vote
3answers
74 views
Inserting into a string c++
If i want to insert the same character in a string a number of times that the user enters
For example:
int n=30;
string s="";
for(int i=0; i<n; i++) {
s=s+"M";
}
is there a more efficient ...
0
votes
1answer
119 views
How to most efficiently construct a std::string from char * with size
I was looking at a way to achieve sprintf() functionality with std::string and I found a good answer from std::string formatting like sprintf. This is somewhat hacky though because it writes directly ...
0
votes
1answer
71 views
How to extract the elements of std::string c [duplicate]
I have a std::sting like that:
std::string Str = "PARAM1;PARAM2;PARAM3;PARAM4"
and I need to extract each parameters like:
char* param1 = explodStr[1] //return PARAM1 ...
I'm not familiar with ...
0
votes
1answer
113 views
Passing strings and vectors by value in c++ [closed]
first I know this is a terrible thing to do as it may require large amounts of memory copying... but it needs to be done because of specifications I have been given.
Anyway, I am trying to pass a ...
0
votes
1answer
138 views
Confusing std::string::c_str() behavior in VS2010
I'm sure I've done something wrong, but for the life of me I can't figure out what! Please consider the following code:
cerr<<el.getText()<<endl;
...
1
vote
1answer
75 views
Passing length 0 string ('0') to STL functions that expect char*
colleague(serioussly I dont use char* :) ) made a bug that reduces to this:
testVar.append('\0'); //testVar is std::string
So he basically this fixes it:
testVar.append("\0");
My question is why ...
2
votes
2answers
170 views
Is std::string's default constructor no-throw?
Can
std::string s;
throw under any circumstances? Is this regulated by the standard (interested in C++03, in case there are differences)?
3
votes
1answer
134 views
Is std::string::replace() optimized for same length strings?
Suppose, most of the time I have below scenario for replacement:
std::string line; // "line" contains a big string.
std::string from = "abcd";
std::string to = "xy"; // to.length() < ...
0
votes
2answers
79 views
comparison of strings does not work
I have a code as below. Whenever temps = $Nodes loop should end. I checked temps every in iteration and saw that temps = $Nodes once as expected but the loop was not ended. This code worked for VS10 ...
0
votes
1answer
76 views
Replace the character with two other
I have a std::string, how can i replace : character with %%?
std::replace( s.begin(), s.end(), ':', '%%' );
this code above doesn't work:
error no instance matches the arguement list
Thanks!
-4
votes
3answers
74 views
How to replace charachters inside a string with “*” in C++? [closed]
I am new to C++. My task is to replace the last 3 charachters of a string variable with "*". The size of string can be variable.
For Example: - If String xyz = "123456" then it should replace 456 ...
0
votes
1answer
71 views
std::find failed to compile
My project failed to build if I use std::find in a code . The error I got are the followings
usr/include/c++/4.6/bits/stl_algo.h:162:4: error: no match for ‘operator==’ in ...
2
votes
3answers
71 views
How to get MyClass to work with std::string's operator+
I tried implicit conversion, but this doesn't work.
#include <string>
#include <iostream>
struct MyClass
{
operator std::string() { return "bar"; }
};
int
main( int argc, char* ...
-1
votes
4answers
460 views
Return std::string as const reference
I have a doubt on returning std::string as const reference.
class sample
{
public:
std::string mString;
void Set(const std::string& s)
{
mString = s;
}
std::string Get()
{
...





