RFA .NET Retrieves a substring from the current RFA_WString object.
The substring starts at a specified index number,
or character position, in the String object.
Namespace: ThomsonReuters.RFA.CommonAssembly: RFA8_NET110_x64 (in RFA8_NET110_x64.dll) Version: 8.0.1.1
Syntax
C# |
---|
public RFA_WString SubStr(
uint startIndex,
uint length
) |
Visual Basic |
---|
Public Function SubStr ( _
startIndex As UInteger, _
length As UInteger _
) As RFA_WString |
Visual C++ |
---|
public:
RFA_WString^ SubStr(
unsigned int startIndex,
unsigned int length
) |
F# |
---|
member SubStr :
startIndex:uint32 *
length:uint32 -> RFA_WString
|
Parameters
- startIndex
- Type: System..::..UInt32
The starting index number in the substring.
- length
- Type: System..::..UInt32
The number of characters in the substring.
Return Value
New substring object.
See Also