Sharepoint 中读取得不同类型SPField 时的处理方式之一

113 篇文章 0 订阅
112 篇文章 0 订阅

        private string GetDataFromLookUpOrUser(string tempString)
        {
            string temp = "";
            string temp2 = "";
            string temp3 = "";
            string temp4 = "";
            int count = 0;
            Boolean start = true;
            for (int i = 0; i < tempString.Length; i++)
            {
                temp += tempString.Substring(i, 1);
                if (i < tempString.Length - 1)
                {
                    if (tempString.Substring(i, 2) == "#^")
                    {
                        if (start == true)
                        {
                            temp2 = temp.Substring(0, temp.Length - 1);
                            temp = "";
                            i++;
                            start = false;
                        }
                    }
                    else if (tempString.Substring(i, 2) == "^#")
                    {
                        temp3 += temp.Substring(1, temp.Length - 2);
                        temp = "";
                        i++;
                        start = true;
                        count = 0;
                        temp4 += temp2 + temp3;
                        temp3 = "";
                    }
                    else if (tempString.Substring(i, 2) == ";#" && start == false)
                    {
                        count++;
                        if (count % 2 == 0)
                        {
                            temp3 += temp.Substring(1, temp.Length - 2);
                            temp3 = temp3 + ",";
                            temp = "";
                            i++;
                        }
                        else
                        {
                            temp = "";
                        }
                    }
                }
            }
            return temp4 + temp;
        }

        private string GetDataFromCalculatedField(string tempString)
        {
            string temp = "";
            string temp2 = "";
            string temp3 = "";
            string temp4 = "";
            int count = 0;
            Boolean start = true;
            for (int i = 0; i < tempString.Length; i++)
            {
                temp += tempString.Substring(i, 1);
                if (i < tempString.Length - 1)
                {
                    if (tempString.Substring(i, 2) == "#%")
                    {
                        if (start == true)
                        {
                            temp2 = temp.Substring(0, temp.Length - 1);
                            temp = "";
                            i++;
                            start = false;
                        }
                    }
                    else if (tempString.Substring(i, 2) == "%#")
                    {
                        temp3 += temp.Substring(1, temp.Length - 2);
                        temp = "";
                        i++;
                        start = true;
                        count = 0;
                        temp4 += temp2 + temp3;
                        temp3 = "";
                    }
                    else if (tempString.Substring(i, 2) == ";#" && start == false)
                    {
                        count++;
                        if (count % 2 == 0)
                        {
                            temp3 += temp.Substring(1, temp.Length - 2);
                            temp3 = temp3 + ",";
                            temp = "";
                            i++;
                        }
                        else
                        {
                            temp = "";
                        }
                    }
                }
            }
            return temp4 + temp;
        }

        private string GetDataFromMultipleChoice(string tempString)
        {
            string temp = "";
            string temp2 = "";
            string temp3 = "";
            string temp4 = "";
            Boolean start = true;
            for (int i = 0; i < tempString.Length; i++)
            {
                temp += tempString.Substring(i, 1);
                if (i < tempString.Length - 3)
                {
                    if (tempString.Substring(i, 4) == "#*MC")
                    {
                        if (start == true)
                        {
                            temp2 = temp.Substring(0, temp.Length - 1);
                            temp = "";
                            i += 3;
                            start = false;
                        }
                    }
                    else if (tempString.Substring(i, 4) == "MC*#")
                    {
                        temp = "";
                        i += 3;
                        start = true;
                        temp4 += temp2 + temp3.Substring(0, temp3.Length - 1);
                    }
                    else if (tempString.Substring(i, 2) == ";#")
                    {
                        temp3 += temp.Substring(0, temp.Length - 1);
                        temp3 = temp3 + ",";
                        temp = "";
                        i++;
                    }
                }
            }
            return temp4 + temp;
        }

        /// <summary>
        /// 取得 HyperLink 类型的值
        /// </summary>
        /// <param name="strValue"></param>
        /// <returns></returns>
        private string GetDataFromHyperLink(string strValue)
        {
            if (strValue == "")
            {
                return "";
            }

            if (strValue.IndexOf(",") > 0)
            {
                return strValue.Substring(0, strValue.IndexOf(","));
            }
            else
            {
                return strValue;
            }
        }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值