Is there any function that passes from String to array? I need to work with each character of the string.
Thank u in advance
Printable View
Is there any function that passes from String to array? I need to work with each character of the string.
Thank u in advance
you can use the operator []
CString s( "abc" );
ASSERT( s[1] == 'b' );
let me know if this help