Advertisement
jackieradallhazik

C# : Json Parser Function

Nov 1st, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.10 KB | None | 0 0
  1. public string parse(string html, string data)
  2.         {
  3.             string partstr = ",";
  4.             int place = html.IndexOf(data);// tìm vị trí của mảnh string
  5.             int dotpl;// nhớ thêm điều kiện ở đây khi tìm k thấy mảnh string
  6.             if (place == -1) { return "False"; }
  7.             for (int i = 0; ; i++)
  8.             {
  9.                 string finddot = html.Substring(place + i, 1);// tìm dấu ":" để lấy khúc sau của mảnh string
  10.                 if (finddot == ":")
  11.                 {
  12.                     dotpl = place + i + 1; // tìm thấy vị trí dấu ":" thì cộng 1 cho vị trí đó, rồi bắt đàu lấy khúc sau
  13.                     break;
  14.                 }
  15.             }
  16.             int endpl;
  17.             for (int i = 0; ; i++)
  18.             {
  19.                 string endstr = html.Substring(dotpl + i, 1);
  20.                 if (endstr == partstr)
  21.                 {
  22.                     endpl = dotpl + i;
  23.                     break;
  24.                 }
  25.             }
  26.             return html.Substring(dotpl, endpl - dotpl);
  27.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement