- public static string ToFirstUpper(string s)
- {
- if (String.IsNullOrEmpty(s))
- return s;
- string result = "";
- //lấy danh sách các từ
- string[] words = s.Split(' ');
- foreach (string word in words)
- {
- // từ nào là các khoảng trắng thừa thì bỏ
- if (word.Trim() != "")
- {
- if (word.Length > 1)
- result += word.Substring(0, 1).ToUpper() + word.Substring(1).ToLower() + " ";
- else
- result += word.ToUpper() + " ";
- }
- }
- return result.Trim();
- }
Thứ Hai, 26 tháng 12, 2011
Viết hoa chữ cái đầu các từ trong 1 chuỗi và loại bỏ các khoảng trắng thừa
Đăng ký:
Đăng Nhận xét
(
Atom
)
Không có nhận xét nào :
Đăng nhận xét