Split Method
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
I have a LPSTR variable and I need to use the Split method to extract the necessary data.
-
I have a LPSTR variable and I need to use the Split method to extract the necessary data.
Split() is part of VB and JScript. I'm not familar with it in C/C++. Either way, the first parameter is a string or an instance of a Regular Expression object identifying one or more characters to use in separating the string. If omitted, a single-element array containing the entire string is returned. The return value is an array of strings split at each point where separator occurs in the source. The separator is not returned as part of any array element.
-
I have a LPSTR variable and I need to use the Split method to extract the necessary data.