level 9
flkuangren
楼主
package com.util
{
/**
* 首字母大写
* */
public class CharCase
{
public static function toUpperCases(str:String):String
{
return str.charAt(0).toUpperCase()+str.substr(1).toLowerCase();
}
}
}
注:转自其他网站
2011年10月17日 09点10分
1
{
/**
* 首字母大写
* */
public class CharCase
{
public static function toUpperCases(str:String):String
{
return str.charAt(0).toUpperCase()+str.substr(1).toLowerCase();
}
}
}
注:转自其他网站