点击或拖拽改变大小

Functions.Proper 方法

X#
将每个单词的首字母转换为大写

命名空间:  XSharp.Core
程序集:  XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法
 FUNCTION Proper(
	cText AS STRING
) AS STRING
查看代码

参数

cText
类型:String
一串文本。

返回值

类型:String
cText 的每个单词开头都为大写字母。
备注
Proper() 依赖于国家/地区。
示例
此示例使用 Proper() 来大写一个人的名字:
X#
1LOCAL cName AS STRING
2cName := "terry a. brown"
3? Proper(cName)            // Terry A. Brown
4? cName                        // terry a. brown
参见