字符串首字母大小写转换

作者:追风剑情 发布于:2018-11-28 20:04 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Test3
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string[] arr = new string[]{
  14. "aaa","bbb","ccc","ddd","eee","fff","ggg"
  15. };
  16.  
  17. Console.WriteLine("首字母大写:");
  18. for (int i = 0; i < arr.Length; i++) {
  19. arr[i] = FirstToUpper(arr[i]);
  20. }
  21. Print(arr);
  22.  
  23. Console.WriteLine("首字母小写:");
  24. for (int i = 0; i < arr.Length; i++) {
  25. arr[i] = FirstToLower(arr[i]);
  26. }
  27. Print(arr);
  28. Console.Read();
  29. }
  30.  
  31. // 首字母大写
  32. protected static string FirstToUpper(string str)
  33. {
  34. if (string.IsNullOrEmpty(str))
  35. return string.Empty;
  36. char[] s = str.ToCharArray();
  37. char c = s[0];
  38. if ('a' <= c && c <= 'z')
  39. c = (char)(c & ~0x20);
  40. s[0] = c;
  41. return new string(s);
  42. }
  43.  
  44. // 首字母小写
  45. protected static string FirstToLower(string str)
  46. {
  47. if (string.IsNullOrEmpty(str))
  48. return string.Empty;
  49. char[] s = str.ToCharArray();
  50. char c = s[0];
  51. if ('A' <= c && c <= 'Z')
  52. c = (char)(c | 0x20);
  53. s[0] = c;
  54. return new string(s);
  55. }
  56.  
  57. private static void Print(string[] arr)
  58. {
  59. bool first = true;
  60. StringBuilder sb = new StringBuilder();
  61. for (int i = 0; i < arr.Length; i++)
  62. {
  63. if (!first)
  64. sb.Append(",");
  65. sb.Append(arr[i]);
  66. first = false;
  67. }
  68. Console.WriteLine(sb.ToString());
  69. }
  70. }
  71. }

运行测试

1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号