转换首字母为大写,其余字母为小写.等同于 Excel 中的 Proper 函数
#Include <String.au3>
_StringProper($s_String)
$s_String | 待转换的字符串 |
成功: | 返回转换后的字符串 |
失败: | 返回 "" |
#include <String.au3>
;将返回 : Somebody Lastnames
MsgBox(4096, '', _StringProper("somebody lastnames"))
;将返回 : Some.Body Last(Name)
MsgBox(4096, '', _StringProper("SOME.BODY LAST(NAME)"))
Exit