You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have experienced, that if there were more fields in a row, than in the import model AND the first extended field is not quoted it returns and error - "Delimiter '{0}' found ......
I have inserted
private ExtractedInfo BasicExtractString(LineInfo line)
{
if (IsLast && !IsArray) {
var sepPos = line.IndexOf(Separator);
if (sepPos == -1)
return new ExtractedInfo(line);
if(IsOptional)
return new ExtractedInfo(line, sepPos);
and it fixes the problem.
I have no experience in submitting this fix, but maybe someone can help to that.
The text was updated successfully, but these errors were encountered:
I have experienced, that if there were more fields in a row, than in the import model AND the first extended field is not quoted it returns and error - "Delimiter '{0}' found ......
I have inserted
private ExtractedInfo BasicExtractString(LineInfo line)
{
if (IsLast && !IsArray) {
var sepPos = line.IndexOf(Separator);
and it fixes the problem.
I have no experience in submitting this fix, but maybe someone can help to that.
The text was updated successfully, but these errors were encountered: