Copy
Copy will copy the cotents of newValue to an ascii, wide charactor or biniary string, from the offset location for a given length.
TVariable& Copy( const TVariable &newValue, int offset = 0, int length = 0 );
Parameters
newValue | the new value. |
offset | the start location, in bytes from the start of the string. 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. 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). |
Return Values
This method will return the a temporary const value created on the stack.
Remarks
- This method will return a TVariable of the same type as the original TVariable.
Example Use
- C++
#include "TScript.h" int wmain(int argc, wchar_t* argv[]) { TVariable var("123"); var.Copy(TVariable("5"),2); MessageBox(NULL,(wchar_t*)var.WString(),L"",0);//return "125" return NO_ERROR; }
Also See
Assignment Operators, Position, Substring, StringReplaceListen All
Comments (0)