Record Separator RS 30

Hi,

Is there a way to add Record Separator RS 30 to a string?

For example,

1
2
std::string records = getRecord();
records += 30;  // ????????? 
records += '\x1e';
or
records += '\036';
or
records += (char)30;
Topic archived. No new replies allowed.