Very useful code but i should exclude the fnc1 seperator character from the ai result.
I changed it like this: (added fnc1Correction)
int fnc1Correction = 0;
if (indexOfGroupTermination >= 0)
{
lenghtToRead = indexOfGroupTermination + 1;
fnc1Correction = 1;
}
// get the data of the current AI till the group seperator
result = data.Substring(index, lenghtToRead - fnc1Correction);
Very useful code but i should exclude the fnc1 seperator character from the ai result.
I changed it like this: (added fnc1Correction)