谢谢各位的回答 我用正则来求数字了
// 获取标题上的数字 如果数字>4 就显示更多链接
if (activities.Title.Length > 3 && activities.ActivityItemId == 7)
{
string str = "(\\d+)";
string source = "发表了30张新照片";
Match m1;
Regex re = new Regex(str);
m1 = re.Match(source);
if (m1.Success)
picnum = Utils.ToInt(m1.Value);
else
picnum=0;
}