如何将字符串转换为字符串数组?如string str = "abc";转换为string[] strs = {"a", "b", "c"};
答案:string str = "abc"; string[] strs = Regex.Split(str, "(?<=.)(?=.)");