- public static string ToFirstUpper(string s)
- {
- if (String.IsNullOrEmpty(s))
- return s;
-
- string result = "";
-
-
-
- string[] words = s.Split(' ');
-
- foreach (string word in words)
- {
-
- if (word.Trim() != "")
- {
- if (word.Length > 1)
- result += word.Substring(0, 1).ToUpper() + word.Substring(1).ToLower() + " ";
- else
- result += word.ToUpper() + " ";
- }
-
- }
- return result.Trim();
- }
-
tham khảo
tại đây
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
Rating: 4.5
Diposkan Oleh:
http://pdunoteit.blogspot.com/