Functions.SLen 方法 | |
返回强类型字符串的长度。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION SLen(
cString AS STRING
) AS DWORD
public static uint SLen(
string cString
)
查看代码参数
- cString
- 类型:String
要计数的字符串。
返回值
类型:
UInt32
字符串的长度。
如果字符串为 NULL_STRING,SLen() 返回 0。
备注
SLen() 是 Len() 的类型版本。有关完整描述,请参见 Len()。
备注
The compiler will replace calls to SLen() as much as possible with a direct call to the Length property of a string.
示例
此示例显示如何使用强类型来确定字符串的长度:
1LOCAL cName AS STRING
2cName := "威廉·莎士比亚"
3? SLen(cName)
参见