Это будет отправная точка для функции синтаксического анализа:
/** example: findCharIndex(subject, ':'); */
public static int findCharIndex(String subject, char findChar)
{
boolean insideQuotes = false;
boolean insideTags = false;
for (int index = 0; index < subject.length(); index++)
{
char ch = subject.charAt(index);
if (ch == '"')
insideQuotes = !insideQuotes;
else if (!insideQuotes)
{
if (ch == '<')
insideTags = true;
else if (insideTags && ch == '>')
insideTags = false;
}
if (!insideQuotes && !insideTags && ch == findChar)
return index;
}
return -1;
}