ATCLine2 Function | |
Return the line number of the first occurrence of a substring within a multiple line string, without regard for case.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION ATCLine2(
cSearch AS STRING,
cTarget AS STRING
) AS DWORD
public static uint ATCLine2(
string cSearch,
string cTarget
)
Request Example
View SourceParameters
- 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 first occurrence of
cSearch within
cTarget.
If
cSearch is not found, AtCLine2() returns 0.
Remarks
AtCLine2() is like AtCLine() except that it returns a WORD. See AtCLine() for more information.
Examples See Also