因为今天要用到汉字转拼音,然后首字母要大小写

其中汲及到的还有 

string.Substring(1,2)

  • Remove(int startIndex)
    • 删除此字符串中从指定位置到最后位置的所有字符。
  • Remove(int startIndex, int length)
    • 从此实例中的指定位置开始删除指定数目的字符。

字母大小写的转换,

string.ToLower()

string.ToUpper()

正则表达式的用法

相关文章:

  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-24
  • 2022-02-24
猜你喜欢
  • 2022-12-23
  • 2021-11-22
  • 2021-07-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
相关资源
相似解决方案