RFA .NET Finds the last occurence of specified System.String inside this RFA_String.
Namespace: ThomsonReuters.RFA.CommonAssembly: RFA8_NET110_x64 (in RFA8_NET110_x64.dll) Version: 8.0.1.1
Syntax
C# |
---|
public int FindLast(
string str
) |
Visual Basic |
---|
Public Function FindLast ( _
str As String _
) As Integer |
Visual C++ |
---|
public:
int FindLast(
String^ str
) |
F# |
---|
member FindLast :
str:string -> int
|
Parameters
- str
- Type: System..::..String
A string to find.
Return Value
The character position of the str parameter if the specified string is found,
or -1 if it is not found. If value is empty, the return value is 0 (zero).
See Also