Home License -- for personal use only. Not for government, academic, research, commercial, or other organizational use. character_to_string_test(): convertCharsToStrings() and convertStringsToChars()" convert between character vector data and string data. cvec is a character vector, and s is a string: cvec = 'This is text.' s = "This is also text." After conversion, we have: s_to_cvec = 'This is also text.' cvec_to_s = "This is text." character_to_string_test(): Normal end of execution.