C# 字符串的操作

Posted aijiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 字符串的操作相关的知识,希望对你有一定的参考价值。

技术图片
      var tStr = "0|1:开门|2:关门|3:门检失败|4:开门|5:开门|6:关门";
            var result = string.Format("[{0}]", string.Join(",", tStr.Substring(2).Split(|).Select(s => string.Format("{{doorid:{0}, status:{1}}}", s.Split(:)[0], s.Split(:)[1]).Replace("开门", "1").Replace("关门", "0").Replace("门检失败", "-1")).ToArray()));
            MessageBox.Show(result);
            //string  tStr = "0|1:开门|2:关门|3:门检失败|4:开门|5:开门|6:关门";
            //tStr = tStr.Replace(":", ",");
            //tStr = tStr.Replace("开门", "status:1}");
            //tStr = tStr.Replace("关门", "status:0}");
            //tStr = tStr.Replace("门检失败", "status:-1}");
            ////tStr = tStr.Replace("|", "{doorid:");

            //string[] str = tStr.Split(‘|‘);
            //string strs = "[";

            //for (int i = 1; i < str.Length; i++)
            //{
            //    MessageBox.Show(i.ToString());
            //    if (i < str.Length-1)
            //    {
            //        strs += "{doorid:" + str[i] + ",";
            //    } else if( i== str.Length - 1)
            //    {
            //        strs += "{doorid:" + str[i] + "]";
            //    }
            //}
            //MessageBox.Show(strs);
View Code

 

以上是关于C# 字符串的操作的主要内容,如果未能解决你的问题,请参考以下文章

记录C#常用的代码片段

比较 C# 中的字符串片段并从集合中删除项目

C#程序员经常用到的10个实用代码片段

C# 最有用的(自定义)代码片段是啥? [关闭]

此 Canon SDK C++ 代码片段的等效 C# 代码是啥?

c#代码片段快速构建代码