Hi
Question about append to local file function
There is some way to add a CRLF at the end of the line?
i did some test but fails
Thanks for help
Hi
Question about append to local file function
There is some way to add a CRLF at the end of the line?
Thanks for help
If \n doesnβt work, some file systems use \r\n instead
\n\n just write the same letters on the file later i try \r\n
In that case you may need to do something like:
int c = 0x0A
String nl = Character.toString((char)c)
and then use nl in place of the the \n
So i create nl as a local variable?
Sorry i'm confused
in the text field i can use instructions like this?
tommorrow i'm back home and i try
Thanks
Want to laugh?
Sometimes we are inclined to think that the solution to our problems is complicated and so we look for complicated solutions.
But we don't see that the solution is sometimes simple and trivial and it's right there in front of us.
But we look for the complex solution.
My goal was to get a time log of some values.
Like this
15-Feb-2021;21:37;1;20;19.2;19.2;
15-Feb-2021;21:37;1;20;19.2;19.2;
15-Feb-2021;21:37;1;20;19.2;19.2;
15-Feb-2021;21:37;1;20;19.2;19.2;
to have a CSV exportable in excell
therefore I have generated this rule
Append to LogTermostatVirtual: %date%;%time%;%aux_ReleCaldaia%;%aux_SetTermostato%;%aux_TemperatureMedia%;%aux_Temperature1%;
and then I wondered how do I generate CRLF? because the result was this....
15-Feb-2021;21:37;1;20;19.2;19.2;15-Feb-2021;21:37;1;20;19.2;19.2;15-Feb-2021;21:37;1;20;19.2;19.2;15-Feb-2021;21:37;1;20;19.2;19.2;
So I tried to add special characters \n \r....
Days and days of thinking and googling and asking you guys for advice....
Then tonight I looked at the rule I clicked at the end of the line and hit enter....