Home Texas Home

SubString

SubString will cut an ascii, wide charactor or biniary string, from the start location for a given length.
TVariable SubString(
   int start,
   int length = 0
);
		

Parameters

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).

Return Values

These methods 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

TVariable var(L"123");
MessageBox(NULL,var.SubString(1,1).WString(),L"",0);//return "2"

Also See

Copy, Position, StringReplace

Copyright © 2007-2008, Ekky Software Pty Ltd.