Click here to Skip to main content
15,880,608 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

BOOL AfxExtractSubString(CString& rString, LPCTSTR lpszFullString, int iSubString, TCHAR chSep)

Is it possible that chSep can be ' ' (a space char) too? I have tried it be ',' and works fine, but ' ' does not work somehow...

Appreciate your help in advcance,
Brian Jeong
Posted

1 solution

Hi
Can you post your code?
On my environment the code below just works fine.

C++
LPCTSTR lpszInputString = "a b c d e f g";
CString strResult;

int i = 0;
while (AfxExtractSubString(strResult,lpszInputString, i++, _T(' ')))
{
    // Do something with strResult...
}
 
Share this answer
 
Comments
bjeong 25-May-12 13:22pm    
Thank you very much for your help! Matter of fact, your example code is same as my code.

My problem was, I found, that my test text included "multiple" ' ' characters between non-' ' string-words! So, I need to take care of these "multiple" ' ' characters cases, in which I do not see this issue if the separation character is non-' ', for example: ','.
Sean Niizuma 25-May-12 16:43pm    
My pleasure, bjeong!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900