标签: c# asp.net xml web-services sharepoint
当我使用Lists.asmx webservice来显示List数据时,这样生成的xml返回列表查找列,其数据如下所示:[135; #Superman]
有没有办法摆脱数字;#并离开超人?
答案 0 :(得分:0)
您可以尝试:
Console.WriteLine(Regex.Match("1236;#xxl", "\d+;#(.*)").Groups[1]);
或使用任何其他字符串操作