Functions.Proper 方法 | |
将每个单词的首字母转换为大写
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION Proper(
cText AS STRING
) AS STRING
public static string Proper(
string cText
)
查看代码参数
- cText
- 类型:String
一串文本。
返回值
类型:
StringcText 的每个单词开头都为大写字母。
备注
Proper() 依赖于国家/地区。
示例
此示例使用 Proper() 来大写一个人的名字:
1LOCAL cName AS STRING
2cName := "terry a. brown"
3? Proper(cName)
4? cName
参见