예제 #1
0
파일: StrEx.cs 프로젝트: coolape/mibao
        static public string appendSpce(string str, int totalLen)
        {
            int i = 0;

            if (str == null || str == "")
            {
                str = "";
            }
            i = str.Length;
            PStr ps = PStr.b(str);

            for (; i < totalLen; i++)
            {
                ps.a(" ");
            }
            return(ps.e());
        }