Hi there,
On Mon, 2010-12-13 at 16:28 -0500, Kohei Yoshida wrote:
I'd like to port a patch to the libreoffice-3-3 branch to ignore
preceding and trailing spaces in cells during csv import.
I just wrote a set of unit tests for this; in sc/qa/unit/ something
like:
struct {
const char *pStr; int eSep; bool bResult; double nValue;
} aTests[] = {
{ "foo", English, false, 0.0 },
{ "1.0", English, true, 1.0 },
{ "1,0", English, false, 0.0 },
{ "1.0", European, false, 0.0 },
{ "1.000", European, true, 1000.0 },
{ "1,000", European, true, 1.0 },
{ "1.000", English, true, 1.0 },
{ "1,000", English, true, 1000.0 },
{ " 1.0", English, true, 1.0 },
{ " 1.0 ", English, true, 1.0 },
{ "1.0 ", European, false, 0.0 },
{ "1.000", European, true, 1000.0 },
{ "1137.999", English, true, 1137.999 },
{ "1.000.00", European, false, 0.0 }
};
Which all pass just fine; so it seems fine to me. People with more
tortured minds / tests welcome there.
Thanks,
Michael.
--
michael.meeks@novell.com <><, Pseudo Engineer, itinerant idiot
Context
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.