Search found 3 matches

by Leo Souza
10 Apr 2012 02:18
Forum: General Discussion
Topic: Can't get arraytostring() to work as advertised...
Replies: 3
Views: 1247

Re: Can't get arraytostring() to work as advertised...

arraytostr only works with hexadecimal values like 0x30
ask for ascii code in google and you will find how to convert them.

and there is this alternative:
http://liine.net/forum/viewtopic.php?f=25&t=1096
by Leo Souza
21 Feb 2012 21:24
Forum: General Discussion
Topic: function to string processing
Replies: 6
Views: 2868

Re: function to string processing

Hi,

Yes I fixed that. Sorry.

This is a way to concatenate strings yeah! And the converteHex function could be improved with all ascii hex codes. Linke those in: http://www.asciitable.com/

Good use!
by Leo Souza
20 Feb 2012 12:07
Forum: General Discussion
Topic: function to string processing
Replies: 6
Views: 2868

function to string processing

Hi all, I have developed this funcion at topmost level to help with string processing name: converteHex parameter: car decl val=car; if(car == '0') val = 0x30; if(car == 0) val = 0x30; else if(car == '\') val = 0x5C; else if(car == '/') val = 0x2F; else if(car == '1') val = 0x31; else if(car == '2 ...