Tagged Questions

Control characters are non-printing characters used to send signals to the output terminal.

learn more… | top users | synonyms

9
votes
5answers
2k views

Why is '\x' invalid in Python?

I was experimenting with '\' characters, using '\a\b\c...' just to enumerate for myself which characters Python interprets as control characters, and to what. Here's what I found: \a - BELL \b - ...
6
votes
3answers
561 views

Why does this C program print weird characters in output?

I've the following program: #include <stdio.h> int main() { int ch; while( ch = getchar() != '\n') { printf("Read %c\n",ch); } return 0; } ...
6
votes
6answers
2k views

What are carriage return, linefeed, and form feed?

What is the meaning of the control characters carriage return, linefeed, and form feed?
6
votes
6answers
663 views

Is 0x9B (155decimal) a special control character? Why is it missing from ascii tables?

I'm working on an embedded system, and i'm having dramas getting it to send a certain chunk of data across the serial port. I narrowed it down and found that if a 0x9B is present in the message, it ...
5
votes
2answers
167 views

XmlTextWriter incorrectly writing control characters

.NET's XmlTextWriter creates invalid xml files. In XML, some control characters are allowed, like 'horizontal tab' (&#x9;), but others are not, like 'vertical tab' (&#xB;). (See spec.) I ...
4
votes
3answers
88 views

Using a Regular Expression to Find XML character references for control characters

I need some help figuring out the regex for XML character references to control characters, in decimal or hex. These sequences look like the following: &#0; &#x03; &#31; ...
4
votes
3answers
388 views

C# Console Application: Preventing Control-C from being printed?

I have a console app, and I want to capture Control-C and shutdown gracefully. I have the following code: Console.CancelKeyPress += new ConsoleCancelEventHandler((o, e) => { ...
3
votes
4answers
712 views

Are Fortran control characters (carriage control) still implemented in compilers?

In the book Fortran 95/2003 for Scientists and Engineers, there is much talk given to the importance of recognizing that the first column in a format statement is reserved for control characters. I've ...
2
votes
3answers
421 views

Remove “Invisible” Control Characters in VB.Net

I am currently reading in a text file in VB.Net using Dim fileReader As String fileReader = My.Computer.FileSystem.ReadAllText(file) File contains several lines of text and when I read in the text ...
2
votes
3answers
237 views

Java: detect control characters which are not correct for JSON

I am reinventing the wheel and creating my own JSON parse methods in Java. I am going by the (very nice!) documentation on json.org. The only part I am unsure about is where it says "or control ...
2
votes
1answer
174 views

Why does irb insert control characters into my reverse-interactive-search buffer?

If I do a reverse interactive search in irb and then enter a control character (arrow keys are the only ones I've seen this with actually). So I start with this session: $ irb >> print "hello" ...
2
votes
6answers
2k views

How to bulk insert from CSV when some fields have new line character?

I have a CSV dump from another DB that looks like this (id, name, notes): 1001,John Smith,15 Main Street 1002,Jane Smith,"2010 Rockliffe Dr. Pleasantville, IL USA" 1003,Bill Karr,2820 ...
1
vote
2answers
23 views

What's the fle/group/record/unit separator control characters and its usage?

Unicode defines several control characters from ASCII. http://www.unicode.org/charts/PDF/U0000.pdf Most of them are usually used but I really couldn't see any usage of information separators ...
1
vote
1answer
65 views

json_decode doesnt decode server's response?

I'm trying to decode a selenium server's response. The server returns: {"sessionId":null,"status":0,"value":{"os":{"arch":"amd64","name": "Windows Server 2008 ...
1
vote
1answer
86 views

Is the behaviour of the tab character in a Delphi TLabel caption defined?

If I put tab characters into a string and then assign the Caption property of a label from the string what do the tab characters do? CR characters cause a return, which is useful for displaying a ...
1
vote
1answer
73 views

How to handle incoming control characters in a custom terminal?

For my project I needed to create a custom terminal-like window and connect to a Cisco router through console port. So I inherited a TextBox and created a custom control in WPF. And I thought it would ...
1
vote
3answers
91 views

How to remove ETX character from the end of a string? (Regex or PHP)

How can I remove the ETX character (0x03) from the end of a string? I'd either like a function, otherwise I can write a regular expression, all I want to know is how to match the ETX character in a ...
1
vote
1answer
114 views

Replace mixed escape sequences, control characters and literals with Sed?

I have a weird mix of literal, visible and escaped control characters in a data dump that I need to clean (preferably with sed), for example ^A, ^B, \N (literally), and visible newlines. I need to ...
1
vote
2answers
68 views

recognizing control characters

On my Linux box it shows up as ^A, CTRL-A when i vi the file. While writing a C program, how should i reference it? How can i find out a numeric value of it?
1
vote
1answer
183 views

Windows service control characters

I created a Windows service and would like to send it a control+B or control+C control value. I know I can use sc control, but I was wondering if there was a location that contained all possible ...
1
vote
2answers
4k views

cscript - print output on same line on console?

If I have a cscript that outputs lines to the screen, how do I avoid the "line feed" after each print? Example: for a = 1 to 10 WScript.Print "." REM (do something) next The expected output ...
1
vote
1answer
702 views

Paste from Word + Create XML document -> hexadecimal value 0x0C, is an invalid character (.Net)

I have a webpage that accepts HTML-input from users. The input is converted into an xml document using the System.Xml namespace, like this: var doc = new XmlDocument(); ...
1
vote
2answers
525 views

detecting end of tty output

Hi I'm writing a psudo-terminal that can live in a tty and spawn a second tty which is filters input and output from I'm writing it in python for now, spawning the second tty and reading and writing ...
1
vote
3answers
445 views

Can I put control characters in XML via XSLT?

I have the following problem: I have an XML and an XSLT file to process this it and generate output. The output of this process should contain a control character '0B'. And as far as I know, XML ...
1
vote
1answer
723 views

Matching Unicode control characters except for three with Regular Expressions

I would need to get a Regular Expression, which matches all Unicode control characters except for carriage return (0x0d), line feed (0x0a) and tabulator (0x09). Currently, my Regular Expression looks ...
1
vote
2answers
100 views

How to send ^K to shell

I want to run a shell command in Terminal, then clear the console, from Applescript. If I was doing this by hand, I'd use ^K -- how do I send the ^K character in a string to Terminal?
0
votes
0answers
103 views

Node JS REPL, Sockets, and Telnet - Tab Completion, Arrow Keys, etc

I have been playing around with Node's REPL. I thought it would be pretty cool to make it available via a Socket, connect to it via Telnet/puTTY/whatever, and debug my server on-the-fly. I used the ...
0
votes
2answers
75 views

How to convert an hex value to the acronym of the ASCII control character?

I want to convert the hex value of an ASCII control character to its acronym. For example: 1C (the code for the File Separator character) becomes FS. How can I do this in C++?
0
votes
2answers
87 views

Missing flow control data (0x13) from reading device data stream

I have written a Linux app to read & write binary data to a remote device over a USB port that is emulating a serial port. When I read data from the device, I have a USB sniffer that shows a ...
0
votes
1answer
94 views

Is there a Qt function to (un-)escape (at least) the ASCII formatting characters (d 0..31) in a QString?

I don't like reinventing the wheel and this seemed like a pretty basic function. The same concept as these two questions except specifically for QStrings? QRegExp has an escape function so I'm ...
0
votes
1answer
49 views

Why is there an escape sequence for VERTICAL TAB?

Another question, What is a vertical tab?, describes what the vertical tab character was originally used for. But why was U+000B VERTICAL TAB considered important enough to be allocated an escape ...
0
votes
2answers
237 views

Escaping control characters in Oracle XDB

I'm completely new to Oracle's XDB, in particular using it to generate XML output from a database table, and am working on an application which is moving from 9i (Oracle9i Enterprise Edition Release ...
0
votes
2answers
119 views

Arrow keys turn into control characters in Telnet

I'm in an Ubuntu terminal, and telnet to a server. Now whenever I type 'up', it turns into ^[[A. Other arrow keys also turn into control characters. Is there a way I can run telnet so it understands ...
0
votes
0answers
35 views

CTTypesetterRef with control characters

How can I display control characters in custom NSView? - (void)drawRect:(NSRect)dirtyRect { ... const UInt8 bytes[4] = {'\x31','\x03', '\x33', 0}; CFIndex size = 4; CFStringRef str = ...
0
votes
1answer
504 views

Removing control characters from a UTF-8 string

I found this question but it removes all valid utf-8 characters also (returns me a blank string, while there are valid utf-8 characters plus control characters). As I read about utf-8, there's not a ...
0
votes
1answer
178 views

How do I create SAS fixed-format output containing end-of-line control characters?

I am using SAS's FILE statement to output a text file having fixed format (RECFM=F). I would like each row to end in a end-of-line control character(s) such as linefeed/carriage return. I tried the ...
0
votes
1answer
35 views

Are all control characters supported by XML?

<?xml version="1.0"?> <root> <content>a&#20;b</content> </root> Firefox stats that the above xml is malformed.. but when I replace the entity &#20; ...
0
votes
4answers
2k views

nmake - how to force echo command to output the tab character?

How to force echo command to output a tab character in MS nmake makefile? Verbatim tabs inserted right into a string after echo command are removed by nmake and don't show up in the output file. all ...
0
votes
1answer
726 views

In PHP, how do I send a control character down a socket?

In a PHP script I am writing, I need to send a control+z character down a network socket I have previously created. I understand the ctrl+z character to be chr(26), so at the end of the string I am ...