ObjectNames.NicifyVariableName 变量名字
static function NicifyVariableName (name : string) : string
Description描述
Make a displayable name for a variable.
为变量制作一个可显示的名字。
This function will insert spaces before capital letters and remove optional m_, _ or k followed by uppercase letter in front of the name.
这个函数将在大写字母之前插入一个空格并移除大写字母名字的前面可选的m_、_ 或 k 。
// 打印结果"My Variable"
print (ObjectNames.NicifyVariableName ("MyVariable"));
//打印结果"The Other Variable"
print (ObjectNames.NicifyVariableName ("m_TheOtherVariable"));
//打印结果"Some Constant"
print (ObjectNames.NicifyVariableName ("kSomeConstant"));
最后修改:2010年12月23日 Thursday 21:02