Functions.ATCLine2 方法 | |
返回一个子串在多行字符串中第一次出现的行号,不区分大小写。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION ATCLine2(
cSearch AS STRING,
cTarget AS STRING
) AS DWORD
public static uint ATCLine2(
string cSearch,
string cTarget
)
查看代码参数
- cSearch
- 类型:String
要搜索的子串。 - cTarget
- 类型:String
要在其中搜索的字符串。
返回值
类型:
UInt32cSearch 在
cTarget 中第一次出现的位置。
如果未找到
cSearch,AtCLine2() 返回 0。
备注
AtCLine2() 与 AtCLine() 类似,但它返回一个 WORD 类型的值。更多信息请参见 AtCLine()。
示例 参见 引用
ATCLine2(String, String)