摘要: 一、分割拆分 1、使用字符分割: (1)str.Split(','): // 按,分割str 2、使用字符组分割: (1)str1=str.Split(new[] { '1','a' }, StringSplitOptions.None)[1]; // 按1ada分割str,取分割后集合的第二个值 阅读全文
posted @ 2020-07-24 15:35 ꧁执笔小白꧂ 阅读(623) 评论(0) 推荐(0)