Questions tagged [control-characters]

a code point (a number) in a character set, that does not represent a written symbol.

In computing and telecommunication, a control character or non-printing character is a code point (a number) in a character set, that does not represent a written symbol.

Control character - Wikipedia

22 questions
29
votes
2 answers

Notepad Ctrl-Backspace behavior

Text fields in almost all software erase a word when ctrl+backspace is pressed. However, Notepad behaves differently, and inserts a character which is: `` (I copy-pasted it here. I'm not sure if it is visible. It looks like a rectangle in…
musa
  • 571
  • 2
  • 6
  • 17
10
votes
4 answers

Why is backspace often represented with ^H?

I don't see what ^H has in common with "backspace". Why is backspace represented that way in many locations?
Billy ONeal
  • 8,141
  • 14
  • 61
  • 91
9
votes
3 answers

What do the first 32 characters of the ascii table do?

The first 32 characters of the ASCII table (0x00 - 0x1F) are all of the non-printable characters (with the exception of 'DEL' which comes at the end of the table). What are these used for, other than borking your terminal when you cat a binary…
Barton Chittenden
  • 1,984
  • 4
  • 24
  • 35
7
votes
5 answers

gVim control characters on Windows

I copied some data from an app and it has lots of ^Ds and ^Ms in it. I got rid of ^D with no problem using :%s/^D//g and I know I can remove ^M with something like :%s/^V^M//g but the problem is that I'm running on windows and ^V is Ctrl-V, which…
6
votes
2 answers

What's the difference between ^S and ^Z inside a terminal?

When using a terminal emulator, one can stop the currently running program with either CTRL-Z or CTRL-S. What's the difference between these control characters?
Eugene Yarmash
  • 1,220
  • 1
  • 15
  • 24
5
votes
1 answer

How to show CR in Geany

Can Geany be switched into a mode where it displays CR characters (but not LF characters)? Can Geany be forced to only wrap a line on LF but not on CR? Generally speaking: Geany wraps a line on all three possible forms of a line ending: a single CR,…
Tino
  • 1,186
  • 1
  • 13
  • 23
5
votes
3 answers

Create a flat file where control characters have been interpreted in Debian

I like to use the 'script' command to record console sessions. The problem is that the 'typescript' file which is created contains control chars (when using arrows or the delete key). Apart from editing the file manually, is there a way to generate…
Gra
  • 155
  • 4
2
votes
2 answers

How to remove three consecutive line feeds in a Makefile rule?

I need to search for and replace three consecutive newline characters in an input file and filter them out of an output file for a makefile rule on Centos 4. I am using GNU sed v4.1.2 and GNU make v3.82. I've tried variations on the following with…
WilliamKF
  • 7,778
  • 34
  • 103
  • 145
1
vote
1 answer

I can't replace line breaks in vim and iterm

In Vim in iTerm, I frequently encounter issues surrounding line breaks. For example, if I have a file containing the dreaded ^M most online tutorials will say that to perform a replacement I use a regular find and replace on a file…
clumsyjedi
  • 121
  • 3
1
vote
1 answer

NUL characters plus Notepad++ equals monitor squel?

Whenever I open a file that contains NUL characters in Notepad++ my monitor starts to emit high pitched, squealing kind of noise. It doesn't always do that. There is certain criteria to be fulfilled. It largely depends on how many they are, and also…
Samir
  • 20,527
  • 74
  • 166
  • 226
1
vote
0 answers

How to make ^T work for the status char under Linux?

I’ve grown really accustomed to the BSD status char, ^T, since I first started using it back at university during the 80s. It didn’t originate with BSD, but came from even older operating systems. It still works on modern BSD systems, too,…
1
vote
2 answers

Has anyone seen the output of the "net time" command display odd characters?

I've started seeing this on numerous Windows 10 systems, including my work and home PCs. Essentially, the time output of the NET TIME \\LOCALHOST command, which usually looks like "Current time at \\localhost is 4/2/2020 12:11:15 PM" now contains…
1
vote
1 answer

Remap key in mobaxterm

Currently ⇧ Shift + ⌫ Backspace returns ^H in my linux console. How to remap this to CTRL + ⌫ Backspace? I use the newest version of MobaXterm "Personal Edition 8.6".
Peter
  • 1,015
  • 2
  • 16
  • 33
1
vote
2 answers

How can I display hidden characters in Excel 2013?

Apparently in earlier versions of Excel, there was an option "Show Control Characters" which seems to be missing from 2013. Is there a way to display hidden characters in a worksheet? I have a spreadsheet where one of the columns has a lot of…
0
votes
1 answer

Using Omnipage 19 convert to MP3 functionality, can you utilize control sequences?

Basically; Omnipage can convert things like PDF's to MP3 Audio using a Text to Speech engine. The engine I think its using to do this is Realspeak Solo v4.0: I want to use control sequences to control how the text is being read, however, all the…
Anon
  • 101
  • 3
1
2