摘要: String str = "abcd1234"; Console.WriteLine(str.Substring(0,3));//前三位 abc Console.WriteLine(str.Substring(3));//去除前三位 d1234 Console.WriteLine(str.Subst 阅读全文
posted @ 2021-11-16 15:39 LLj-511 阅读(98) 评论(0) 推荐(0)