函数参考


_StringProper

转换首字母为大写,其余字母为小写.等同于 Excel 中的 Proper 函数

#Include <String.au3>
_StringProper($s_String)

参数

$s_String 待转换的字符串

返回值

成功: 返回转换后的字符串
失败: 返回 ""

注意/说明

 译注:以下引自 Excel 中的帮助文档,原文留如后:
 将文本字符串的首字母及任何非字母字符之后的首字母转换成大写,将其余的字母转换成小写.
This function will capitalize every character following a None Apha character.

相关

示例/演示


#include <String.au3>
;将返回 : Somebody Lastnames
MsgBox(4096, '', _StringProper("somebody lastnames"))
;将返回 : Some.Body Last(Name)
MsgBox(4096, '', _StringProper("SOME.BODY LAST(NAME)"))
Exit