c#中的字符串操作

c#中的字符串操作

本文介绍了c#中的字符串操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




i want to find the DatasetID from the string str.
string str={ DatasetID = 13, DatasetName = Assigned Form Submission };



请帮助我。


please help me.

推荐答案


private void FindMethod()
{
   string str="{ DatasetID = 13, DatasetName = Assigned Form Submission }";
   int first = str.IndexOf("=") + "=".Length;
   int last = str.LastIndexOf(",");
   string str2 = str.Substring(first, last - first).Trim();
   System.Console.WriteLine("DataSet ID: '{0}'", str2);
}


string str="{ DatasetID = 13, DatasetName = Assigned Form Submission }";
            string DatasetId = str.Substring(str.IndexOf('=')+1,str.IndexOf(',')-str.IndexOf('=')-1).Trim();





但是你应该解析所有并从中创建一个对象



But you should parse all and create an object from it


这篇关于c#中的字符串操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 00:11