切割字符串可以使用Substring函数 在C#中: temp.Row = name.Split('_')[0].Substring(2);//获取从第二位开始到末尾的字符串varstr=name.Substring(2,3)//获取从第二位开始,长度为3的字符 在sql中: declare@tempvarchar(20)='abcde'selectSUBSTRING(@temp,2,5) //输出bcde,从一开始 在js中 date.sub...