|
@@ -0,0 +1,34 @@
|
|
|
+/*##############################################################################
|
|
|
+
|
|
|
+ Copyright (C) 2011 HPCC Systems.
|
|
|
+
|
|
|
+ All rights reserved. This program is free software: you can redistribute it and/or modify
|
|
|
+ it under the terms of the GNU Affero General Public License as
|
|
|
+ published by the Free Software Foundation, either version 3 of the
|
|
|
+ License, or (at your option) any later version.
|
|
|
+
|
|
|
+ This program is distributed in the hope that it will be useful,
|
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ GNU Affero General Public License for more details.
|
|
|
+
|
|
|
+ You should have received a copy of the GNU Affero General Public License
|
|
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+############################################################################## */
|
|
|
+
|
|
|
+import lib_stringlib;
|
|
|
+import std.str;
|
|
|
+
|
|
|
+d := dataset([{ 'Hello there'}, {'what a nice day'}, {'1234'}], { varstring20 line}) : stored('nofold');
|
|
|
+
|
|
|
+dt := TABLE(d, { string l := line });
|
|
|
+
|
|
|
+p1 := PIPE(dt(l!='p1'), 'sort', { string lout }, flat, output(csv));
|
|
|
+p2 := PIPE(dt(l!='p2'), 'sort', { string lout }, csv, output(flat), REPEAT);
|
|
|
+p3 := CHOOSEN(PIPE(dt(l!='p3'), 'sort', { string lout }, thor, output(csv)), 1);
|
|
|
+p4 := CHOOSEN(PIPE(dt(l!='p4'), 'sort', { string lout }, REPEAT, csv, output(thor)), 1);
|
|
|
+
|
|
|
+output(p1, { lout, '\n' } );
|
|
|
+output(p2, { string20 l := Str.FindReplace(lout, '\r', ' ') } );
|
|
|
+output(p3, { string20 l := Str.FindReplace(lout, '\r', ' ') } );
|
|
|
+output(p4, { string20 l := Str.FindReplace(lout, '\r', ' ') } );
|