You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

Hi
example :
a;b;c;d;g;
a;b;c;d;o;c;
a;b;c;d;g;
a;b;c;d;e;f;
in the outputfile y define just one record, and in the inputFile y define like field separator "|" and not the ";"
like row separator "\n"
result :
a;b;c;d;g;a;b;c;d;o;c;a;b;c;d;g;a;b;c;d;e;f;
Regards,
JamesB
Offline
sorry i left a bit out above, the file is an advanced xml file and i want to append all rows into one row, but seperated with a ";"
so the input file looks like this:
a
b
c
d
e
i want the xml file element to have this:
<myelement>a;b;c;d;e;</management>
does that make sense?
it looks like i cant do it without doing roundabout stuff, with the example you gave above james, the problem with the example above is it looks like this on output:
;a;b;c;d;e;f;
instead of
a;b;c;d;e;f

toshkil wrote:
it looks like i cant do it without doing roundabout stuff, with the example you gave above james, the problem with the example above is it looks like this on output:
;a;b;c;d;e;f;
instead of
a;b;c;d;e;f
Hi toshkil,
Here is the job that gets your file and returns the result you want. you just need to load the output data of this job into an xml file. I hope this help
Regards,
Youssef
Last edited by youssef (2008-07-09 18:37:40)
Offline
Pages: 1