Functions.Occurs2 方法 | |
返回子串在字符串中出现的次数。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION Occurs2(
cSearch AS STRING,
cTarget AS STRING
) AS DWORD
public static uint Occurs2(
string cSearch,
string cTarget
)
查看代码参数
- cSearch
- 类型:String
要搜索的子串。 - cTarget
- 类型:String
要在其中搜索的字符串。(要指定偏移量,请使用 Occurs3()。)
返回值
类型:
UInt32cSearch 在
cTarget 中出现的次数。
备注
Occurs2() 与 Occurs() 相同。
示例
此示例展示了 Occurs2() 的典型用法:
1LOCAL cSearch AS STRING
2LOCAL cTarget AS STRING
3cSearch := "any"
4cTarget := "Anything goes anyway anytime."
5? Occurs2(cSearch, cTarget)
6? Occurs2("any","ANY any")
参见