I have a TCHAR and value as below:
TCHAR szDestPathRoot[MAX_PATH]="String This";
Now I want the 1st three character from TCHAR , like below:
szDestPathRoot.substring(0,2);
How can I do this.
|
The Final caveat: to declare a
You may find these links to be of interest: |
|||||
|
|
|||||
|
|
As you have tagged your question with "C++" you can use the string classes of the std library:
|
|||||||||||||
|
|
This is somewhat ugly but if you know for sure that:
You could just put a terminating NUL at the 4th position to make the string 3 char long.
Note that this operation is destructive to the original string You should really be using a string class in C++ code though. |
|||||||||||||
|
MAX_PATH + 1to prevent overflows. – Benoit Oct 28 '10 at 4:51MAX_PATHis 260, which includes the null termination length. (The maximum supported path length is 255 characters) See msdn.microsoft.com/en-us/library/aa365247.aspx – Billy ONeal Oct 28 '10 at 5:12_T()macro. That will make it a wide string literal in unicode builds. – Alexandre Jasmin Oct 28 '10 at 5:17