![]() |
![]() |
|
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
| DelevopersTScript APISubString |
TVariable SubString( int start, int length = 0 );
| start | This will cut from the start location, widechars are 16bit blocks, while ascii and binary strings are 8bit blocks. If start is negative, the returned string will start at the start 'th character from the end of string. |
| length | This will cut this length from start, widechars are 16bit blocks, while ascii and binary strings are 8bit blocks. It this value is zero then the remaining length of the string will be returned. If length is given and is negative, then that many characters will be omitted from the end of string (after the start position has been calculated when a start is negative). |
TVariable var(L"123"); MessageBox(NULL,var.SubString(1,1).WString(),L"",0);//return "2"
Copyright © 2007-2008, Ekky Software Pty Ltd.