Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public string parse(string html, string data)
- {
- string partstr = ",";
- int place = html.IndexOf(data);// tìm vị trí của mảnh string
- int dotpl;// nhớ thêm điều kiện ở đây khi tìm k thấy mảnh string
- if (place == -1) { return "False"; }
- for (int i = 0; ; i++)
- {
- string finddot = html.Substring(place + i, 1);// tìm dấu ":" để lấy khúc sau của mảnh string
- if (finddot == ":")
- {
- 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
- break;
- }
- }
- int endpl;
- for (int i = 0; ; i++)
- {
- string endstr = html.Substring(dotpl + i, 1);
- if (endstr == partstr)
- {
- endpl = dotpl + i;
- break;
- }
- }
- return html.Substring(dotpl, endpl - dotpl);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement