4

From the following

Can I turn unsigned char into char and vice versa?

it appears that converting a basic_string<unsigned char> to a basic_string<char> (i.e. std::string) is a valid operation. But I can't figure out how to do it.

For example what functions could perform the following conversions, filling in the functionality of these hypothetical stou and utos functions?

typedef basic_string<unsigned char> u_string; int main() { string s = "dog"; u_string u = stou(s); string t = utos(u); } 

I've tried to use reinterpret_cast, static_cast, and a few others but my knowledge of their intended functionality is limited.

3
  • What sort of a conversion do you want? Commented Jan 6, 2016 at 2:12
  • @JonathanPotter Anything that would preserve [A-Za-z0-9] characters through the conversions from s to t in the code above. Commented Jan 6, 2016 at 2:15
  • 1
    ustring u(s.begin(), s.end()); Commented Jan 6, 2016 at 2:15

2 Answers 2

6

Assuming you want each character in the original copied across and converted, the solution is simple

 u_string u(s.begin(), s.end()); std:string t(u.begin(), u.end()); 

The formation of u is straight forward for any content of s, since conversion from signed char to unsigned char simply uses modulo arithmetic. So that will work whether char is actually signed or unsigned.

The formation of t will have undefined behaviour if char is actually signed char and any of the individual characters in u have values outside the range that a signed char can represent. This is because of overflow of a signed char. For your particular example, undefined behaviour will generally not occur.

Sign up to request clarification or add additional context in comments.

1 Comment

FWIW - complete code here. (I was sanity-checking that the static_cast in Nicol's answer wasn't needed.)
1

It is not a legal conversion to cast a basic_string<T> into any other basic_string<U>, even if it's legal to cast T to U. This is true for pretty much every template type.

If you want to create a new string that is a copy of the original, of a different type, that's easy:

basic_string<unsigned char> str( static_cast<const unsigned char*>(char_string.c_str()), char_string.size()); 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.