Ending dot interfered with numeric decimal
This commit is contained in:
@ -376,9 +376,18 @@ namespace CobXmlSupport
|
||||
}
|
||||
if (tmpStr.Length > 0)
|
||||
{
|
||||
__wordList.Add(new RowWord(tmpStr, wrdStart, false));
|
||||
tmpStr = "";
|
||||
wrdStart = 0;
|
||||
if (tmpStr.Length > 1 && tmpStr.Substring(tmpStr.Length - 1, 1) == ".")
|
||||
{
|
||||
__wordList.Add(new RowWord(tmpStr.Substring(0, tmpStr.Length - 1), wrdStart, false));
|
||||
tmpStr = "";
|
||||
wrdStart = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
__wordList.Add(new RowWord(tmpStr, wrdStart, false));
|
||||
tmpStr = "";
|
||||
wrdStart = 0;
|
||||
}
|
||||
}
|
||||
if (__wordList.Count > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user