Search Result

Collapse
5 results in 0.0045 seconds.
Keywords
Members
Tags
ascii
  •  

  • s2krish
    started a topic accented characters to unaccented

    accented characters to unaccented

    Is there python library or function to convert accented characters to unaccented. For example

    From 'Terme \xc4\x8cate\xc5 \xbe' to 'Terme Čatež'.

    When I read Terme Čatež website using urllib.urlopen( ) functio, gives 'Terme \xc4\x8cate\xc5 \xbe'
    See more | Go to post

  • cl2020
    started a topic How to display ASCII characters on C++
    in C

    How to display ASCII characters on C++

    More specifically, in the input code, how can you display all of the displayable ASCII characters with codes in the range 32 to 255 and also include display 16 ASCII characters per line, which will display in the program output?
    See more | Go to post
    Last edited by cl2020; May 13 '10, 04:05 AM. Reason: - does not understand actually.

  • aatif
    started a topic data sent on TcpClient.Connect

    data sent on TcpClient.Connect

    I am using a TcpClient to communicate with a remote system.

    I need to ask is there any data or 'conenction string' that is implicitly sent on TcpClient.Conne ct function?

    Because when I connect, the remote system admin sees some incoming data from my app.

    Secondly, is there any alternate to send/receive ASCII data instead of TcpClient?

    Thanks
    See more | Go to post

  • Detecting if ASCII Control Characters are pressed (C#)

    I am seeking a method to detect if ASCII Control Characters are pressed. My code currently shown here is not working too well i suspect.

    Code:
     
    private void Transmitted_KeyDown(object sender, KeyEventArgs e)
    {
              if (e.Modifiers==Keys.Control)
               {
                   test = (char)e.KeyCode;              
               }
    }
    See more | Go to post

  • khairiabdulrahim
    started a topic how to manipulate itoa
    in C

    how to manipulate itoa

    this is my code:

    #include <stdio.h>
    #include <stdlib.h>

    int main ()
    {
    int j;
    char str[33];


    printf ("Enter a character: ");
    scanf ("%2c",&j);
    flushall();


    itoa (j, str, 16);
    printf ("hexadecima l: %s\n", str);


    getchar();
    getchar();...
    See more | Go to post
Working...