Here's the code working:
string string_pick(string text, string tag, char caractere)
{
int index = text.IndexOf(tag);
return text.Substring(index + tag.Length, text.IndexOf(caractere, index + tag.Length + 1) - (index + tag.Length));
}...
asked by
17.06.2016 / 01:20