从c#中的字符串获取变量数据

时间:2015-12-12 08:21:33

标签: c#

我从url下载了数据,如下所示。

//[
  {
    "id": "2932675",
    "t": "GNK",
    "e": "LON",
    "l": "915.00",
    "l_fix": "915.00",
    "l_cur": "GBX915.00",
    "s": "0",
    "ltt": "5:08PM GMT",
    "lt": "Dec 11,
    "5": 08PM
    "GMT",
    "
    "lt_dts": "2015-12-11T17:08:26Z",
    "c": "-7.50",
    "c_fix": "-7.50",
    "cp": "-0.81",
    "cp_fix": "-0.81",
    "ccol": "chr",
    "pcls_fix": "922.5"
  }
]

并希望跟随变量t:GNK和l:915来自上面的字符串并在

之后完成
void method1()
   {
      string scrip = textBox1.Text;
      string s;
      WebClient wc = new WebClient();
      string url = ("http://finance.google.com/finance/infoclient=ig&q=NSE:" + scrip);
      s = wc.DownloadString(url);
      textBox2.Text = s.Substring(58, 6);
      textBox3.Text = s;

     }

        public class LatestPrice
    {
        public string id { get; set; }
        public string Name { get; set; }
        public string type { get; set; }
        public string l { get; set; }
        public string l_fix { get; set; }
        public string l_cur { get; set; }
        public string s { get; set; }
        public string lt { get; set; }
        public string lt_dts { get; set; }
        public string c { get; set; }
        public string c_fix { get; set; }
        public string cp { get; set; }
        public string cp_fix { get; set; }
        public string ccol { get; set; }
        public string pcls_fix { get; set; }
    }
    public string[][] convert_string()
    {
        string[][] stockprice = null;
        string stockprice1 = null;
        string getdownloadstr = getstring();

        stockprice1 = getdownloadstr.Replace("//", "").Trim();
        var v = JsonConvert.DeserializeObject<List<LatestPrice>>(stockprice1);
        }

我对程序进行了更改 - 但是如何访问t:gnk值或l = 915值

5 个答案:

答案 0 :(得分:2)

您可以转换为JArrayJObject,并可以直接通过JOject parameter键获取值。

string jsonStr = "[{ \"id\":\"2932675\", \"t\" : \"GNK\" , \"e\" : \"LON\" , \"l\" : \"915.00\" , \"l_fix\" : \"915.00\" , \"l_cur\" : \"GBX915.00\" , \"s\": \"0\" , \"ltt\":\"5:08PM GMT\" , \"lt\" : \"Dec 11 5:08PM GMT\"}]";
var obj = JsonConvert.DeserializeObject<JArray>(jsonStr).ToObject<List<JObject>>().FirstOrDefault();

Console.WriteLine("t = " + obj["t"]);
Console.WriteLine("l = " + obj["l"]);

以上打印输出为

  

t = GNK
  l = 915.00

您可以参考为您的问题创建的this小提琴。

答案 1 :(得分:1)

解析它或者拆分,然后(拆分:)将每一行添加到字典中,使用t作为键,另一行作为值。 然后你可以简单地通过t和l来访问。 用逗号分隔整个字符串你有一个item:value列表,然后在冒号上拆分并添加到字典中。然后在字典中查找信息getvalue = Dictionary [key];

答案 2 :(得分:0)

您可以使用正则表达式来匹配您需要的数据:

string t = Regex.Match(str, "\"t\" : \"[A-Z]{3}\"").Value;
string l = Regex.Match(str, "\"l\" : \"\\d{3}.\\d{2}\"").Value;

str是您下载的数据字符串。

字符串t匹配格式为"t" : "XXX"的子字符串,其中XXX可以包含任何大写字符。

字符串l匹配格式为"l" : "XXX.XX"的子字符串,其中XXX.XX可以包含任何数字。

答案 3 :(得分:0)

1。在Solution Explorer中的Reference中添加NewtonSoft.Json。步骤(参考[rightClick] - &gt;管理NuGetPackage - &gt;搜索&#34; Json.Net&#34; - &gt;安装它们)

  1. 使用Newtonsoft.Json添加;
  2. 代码:

    public class CurrentValue
        {
            public string id { get; set; }
            public string Name { get; set; }
            public string type { get; set; }
            public string l { get; set; }
            public string l_fix { get; set; }
    
            public string l_cur { get; set; }
            public string s { get; set; }
            public string lt { get; set; }
            public string lt_dts { get; set; }
            public string c { get; set; }
            public string c_fix { get; set; }
            public string cp { get; set; }
            public string cp_fix { get; set; }
            public string ccol { get; set; }
            public string pcls_fix { get; set; }
    
        }
    

    创建方法并使用以下代码

     Uri url = new Uri("http://www.google.com/finance/info?q=NSE%3A" + NameofCompany);
                    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
                    request.ContentType = "application/json; charset=utf-8";
                    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                    string Responsecontent = new StreamReader(response.GetResponseStream()).ReadToEnd();
                    string CurrentContent = Responsecontent.Replace("//", "").Trim();
                    var v = JsonConvert.DeserializeObject<List<CurrentValue>>(CurrentContent);
    

    现在&#34; var v&#34;拥有班级的所有数据&#34; CurrentValue&#34;。

    您可以加载包含所有&#34;的xml文件公司名称&#34;并在FormLoad上加载它。使用for循环获取所有&#34;的数据。公司名称&#34;

答案 4 :(得分:0)

我以下面的方式做了

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Web;
using System.Timers;
using System.IO;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Text.RegularExpressions;



namespace google_downloader
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            WebClient wc = new WebClient();
            string s= wc.DownloadString("http://finance.google.com/finance/info?client=ig&q=NSE:sbin");

            //index for t 
            int index7= s.IndexOf('t');
            int index8 = s.IndexOf('e');
            textBox1.Text = ("frist index is" + index7 +  "second indes is   " + index8);

            textBox1.Text = s.Substring(index7+6,(index8-index7)-10);





       }
    }
}