+EA 23.316 Nightly - Plugin.BaseCore โ
June 13, 2026
1 file modified.
Important Changes โ
None.
ExcelParser โ
cs
public static IRow rowHeader;
public static bool allowTrimming;
public static bool IsNull(ICell cell)
{
if (cell != null && cell.CellType != CellType.Blank)public static string[] GetStringArray(int id)
cs
string str = GetStr(id);
if (str != null)
{
return str.Split(',').ToArray();
if (!allowTrimming)
{
return str.Split(',');
}
return (from c in str.Split(',')
select c.Trim()).ToArray();
}
return Array.Empty<string>();
}public static string GetStr(int id, bool useDefault = false)
cs
}
return null;
}
return cell.StringCellValue;
if (!allowTrimming)
{
return cell.StringCellValue;
}
return cell.StringCellValue.Trim();
}
public static string ToLetterId(int id)public static void ClearStaticRows()
cs
row = null;
rowDefault = null;
rowHeader = null;
allowTrimming = false;
}
}