- replaced the XLSX parser with a CSV parser.

Since Google can export this as well it makes a lot more sense here because it is a textual format better suited for version control and does not carry along all the formatting baggage that isn't needed for a string table.
This commit is contained in:
Christoph Oelckers 2019-03-18 10:17:00 +01:00
commit c2c9126453
31 changed files with 118 additions and 17002 deletions

View file

@ -1250,6 +1250,8 @@ void FString::Split(TArray<FString>& tokens, const char *delimiter, EmptyTokenTy
const long delimLen = static_cast<long>(strlen(delimiter));
long lastPos = 0;
if (selfLen == 0) return; // Empty strings do not contain tokens, even with TOK_KEEPEMPTY.
while (lastPos <= selfLen)
{
long pos = IndexOf(delimiter, lastPos);