At2 Function | |
Return the position of the first occurrence of a substring within a string.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION At2(
cSearch AS STRING,
cTarget AS STRING
) AS DWORD
public static uint At2(
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. (To start at a specific offset, use At3().)
Return Value
Type:
DWord
The position of the first occurrence of
cSearch within
cTarget.
If
cSearch is not found, At2() returns 0.
Remarks
At2() is like At() except that it returns a WORD. See At() for more information.
Examples See Also