Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
63 views

Convert int to ascii [chr()] in django template

I am writing a django application, and in a loop, {% for item in list %} {{ forloop.counter0 }} {% endfor %} this will printout the number in the loop starting from 0. But I want to ...
2
votes
3answers
274 views

asc and chr equivalent in C/C++

Well the title pretty much sums it up. I want to use something like asc("0") in C++, and want to make the program platform independent so don't want to use 48! Any help appreciated.
2
votes
1answer
162 views

Perl: Passing unicode string to Chr()

I'm pretty new to Perl so pardon me for what will probably turn into a most obvious answer. I'm trying to pass a unicode markup to the Chr() function. Here's a redacted example of my script. ...
2
votes
1answer
248 views

How to use the chr function inside a regular expression in Perl?

I have a Perl script which has a string which may or may not contain character 146 in the ASCII character codes. I'm interested in using the chr() function inside a regular expression to find out if ...
2
votes
3answers
1k views

VBScript chr() appears to return wrong value

I'm trying to convert a character code to a character with chr(), but VBScript isn't giving me the value I expect. According to VBScript, character code 199 is: � However, when using something ...
1
vote
4answers
1k views

Trying to get the euro symbol using chr(128)

i have this code: define('EURO_SIMBOLO', chr(128)); $euro = EURO_SIMBOLO; var_dump($euro); I expected it shows the € symbol, but no.. Any idea? Regards Javi
1
vote
2answers
124 views

.Net using Chr() to parse text

I'm building a simple client-server chat system. The clients send data to the server and the server resends the data to all the other clients. I'm using the TcpListener and Network stream classes to ...
0
votes
3answers
97 views

chr(n) failed when n exceeds 256

I am using chr and int to convert a binary representation string to real binary value. What I did is n=int('0101011',2) binary=chr(n) Then binary is the real binary value of the ...