line feed into _WC function
Daniel79
Posts: 16
hi, is possible insert a line feed into a string pass to _wc function. i try with different combination but notihing...
_WC('hello world')
how insert a line feed after hello?
thank's
_WC('hello world')
how insert a line feed after hello?
thank's
0
Comments
I'd think _WC("'hello world',$0A") should work
this function alow only a char string and return a widechar
Can you use ch_to_wc() instead of _wc? Because _wc does only work with string literals according to the documentation. Alternatively, maybe try \n where you want a linefeed? That would be the escape for a line feed in C, but I can't seem to find the documentation for what escape sequences are in NetLinx for some reason.