public static string[] sTerminos(string sParentesis)
{
List
<string> cadenas
= new List
<string>(); string cadenaaux;
int indiceant = 0, indicepos = 0, total = 0;
total = sParentesis.Length;
if (sParentesis.Length == 0)
return null;
indicepos
= sParentesis
.IndexOfAny(new Char[] { '+',
'-' },
1); if (indicepos != -1)
{
cadenas.Add(sParentesis.Substring(0, indicepos));
indiceant = indicepos;
while (total > indiceant)
{
indicepos
= sParentesis
.IndexOfAny(new Char[] { '+',
'-' }, indiceant
+ 1); if (indicepos != -1)
{
cadenas.Add(sParentesis.Substring(indiceant, indicepos - indiceant));
indiceant = indicepos;
}
else
{
cadenas.Add(sParentesis.Substring(indiceant, total - indiceant));
indiceant = total;
}
}
}
else cadenas.Add(sParentesis);
return cadenas.ToArray();
}