从字符串c#中提取子字符串

时间:2013-02-09 11:01:27

标签: sharepoint sharepoint-2010

我有一组代码,它返回一个值“2; #bbbb”,其中我想要实现bbbb。     以下是我写的代码。      SPListItemCollection col = StationaryList.Items;      for(int i = 0; i< col.Count; i ++)                             {                                 SPListItem item = col [i];                                 类别名称=项[ “QuizCategoryName”]的ToString();     }

Please tell me what do i do to achieve this.
Actual Output: "2;#bbbb"
Expected Output: bbbb

2 个答案:

答案 0 :(得分:0)

string str = categoryName;
string[] result = str.Split('#');
if(result.Length > 1)
Response.Write(result[1]); // your expected output

答案 1 :(得分:0)

这是查找字段的格式,可以使用下一个sintaxys提取:

SPFieldLookupValue f = new SPFieldLookupValue("your text here");
string value = f.LookupValue;

这种方式可以提取ID,在你的情况下是2

安德鲁