Click or drag to resize

RATLine2 Function

X#
Return the line number of the last occurrence of a substring within a multiline string.

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION RATLine2(
	cSearch AS STRING,
	cTarget AS STRING
) AS DWORD
Request Example View Source

Parameters

cSearch
Type: String
The substring for which to search.
cTarget
Type: String
The string in which to search.

Return Value

Type: DWord
The position of the last occurrence of cSearch within cTarget.
If cSearch is not found, RAtLine2() returns 0.
Remarks
RAtLine2() is the same as RAtLine() except that RAtLine() returns WORD.
Examples