vote up 11 vote down star

Does anyone know where the term escaping -- as in "escaping a character in a string" -- originates from?

Update: Paul Tomblin's answer, although rather brief, lead to the most compelling evidence. Within the paper he linked to there is the following citation:

"4. Expansion of Set

Future expansion to a set larger than 120 may take place in two ways. One is to assign additional characters to presently unassigned 8-bit codes; allowance should be made for certain control codes which will be needed for communication and other devices and which are intended to occupy the high end of the code sequence. The second method is to define a shift character to "escape" to another character set. Thus, whenever the shift character is encountered, the next character (or group of characters) identifies a new character set, and subsequent codes are interpreted as belonging to that set. Another shift character in that set can be used to shift to a third set, which may again be the first set or a different set. Such additional sets would be defined only if and when there arise applications which require them.

R.W.Bemer, W.Buchholz, "An extended character set standard", IBM Tech. Pub. TR00.18000.705, 1960 Jan, rev. TR00.721, 1960 Jun

I also discovered another paper that followed the paper cited above:

A Proposal for Character Code Compatibility -- the Original Paper on the ESCape character

So the evidence would suggest that Bob Bemer is the father of escaping, among many, many other things (like being the Father of ASCII).

flag

3 Answers

vote up 9 vote down check

http://www.trailing-edge.com/~bobbemer/ESCAPE.HTM

link|flag
vote up 7 vote down

It was originally to do with printers. When printing to a old dot matrix printer if you wanted to use italics or select from the 2 or 3 fonts (ie draft, normal or letter quality) you would preceed the command with an ASCII escape character to tell the dot matrix printer not to print the next value and to execute it instead.

Since the advent of Windows this is all handled by the printer drivers but the terminology is still used.

link|flag
vote up 2 vote down

I think this is a general term from the telco industry, although I am not sure.

It has to do with in-band signalling: whenever you do in-band signalling, i.e. transfer signalling information on the same channel as your actual user data, then you have a problem: the token(s) that you use to indicate signalling data might also appear in your user data. Escaping is one of several possible ways to overcome this problem (stuffing is another).

Escaping means that you add an additional signalling token to your channel, but one with a very specific meaning: ignore the token itself and also ignore any special meaning that the following token might have.

Of course, computer programs are one example of in-band signalling: computer programs can contain arbitrary strings, but they are themselves also strings.

Although, why exactly these tokens are called "escape" tokens, I have no idea. Maybe it has to do with the fact that they allow you to escape from the signalling interpretation and drop back into the data "non-interpretation".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.