LZ是说字符串截取吗?string str="123abc456";str=str.Substring(2); //去掉前两位str=str.Substring(0,str.Length-3);//去掉后三位最后str就是除前两位和后三位中间的字符串
SELECT SUBSTRING('abcdefg',1,4)截取,取到你想要的就可以