- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
string parser(string chto, string chem)
{
int dlina = chem.Length;
int kol = chto.Length;
string ret = null;
int shet = 0;
int r = 0;
int nom = 0;
for (int i = 0; i < kol; i++)
{
if (chto[i] == chem[0] && shet == 0)
{
for (int j = i; j < dlina + i; j++)
{
if (chto[j] == chem[r])
{
r++;
shet++;
nom = j;
}
}
if (shet != dlina)
{
shet = 0;
r = 0;
nom = 0;
}
}
}
int schet = nom + 3;
while (chto[schet] != '<')
{
ret += chto[schet];
schet++;
}
return ret;
}