Copyright © Philip M. Parker, INSEAD. Terms of Use.

Text

Definition: Text

Text

Noun

1. The words of something written; "there were more than a thousand words of text"; "they handed out the printed text of the mayor's speech"; "he wants to reconstruct the original text".

2. A passage from the Bible that is used as the subject of a sermon; "the preacher chose a text from Psalms to introduce his sermon".

3. A book prepared for use in schools or colleges; "his economics textbook is in its tenth edition"; "the professor wrote the text that he assigned students to buy".

4. The main body of a written work (as distinct from illustrations or footnotes etc.); "pictures made the text easier to understand".

Source: WordNet 1.7.1 Copyright © 2001 by Princeton University. All rights reserved.
 

Date "text" was first used in popular English literature: sometime before 1321. (references)

 

Specialty Definition: Text

DomainDefinition

Computing

Text n. 1. [techspeak] Executable code, esp. a `pure code' portion shared between multiple instances of a program running in a multitasking OS. Compare English. 2. Textual material in the mainstream sense; data in ordinary {ASCII or {EBCDIC representation (see flat-ASCII). "Those are text files; you can review them using the editor." These two contradictory senses confuse hackers, too. Source: Jargon File.

Business

Main copy block or blocks of an advertisement, as distinguished from headline, subheads, coupon copy, etc. Source: European Union. (references)

Dream Interpretation

To dream of hearing a minister reading his text, denotes that quarrels will lead to separation with some friend.
To dream that you are in a dispute about a text, foretells unfortunate adventures for you.
If you try to recall a text, you will meet with unexpected difficulties.
If you are repeating and pondering over one, you will have great obstacles to overcome if you gain your desires. Source: Ten Thousand Dreams Interpreted ....

Post & Telecom

A sequence of characters forming part of a transmission, which is transmitted as an entity to the ultimate destination and which contains the information to be conveyed. Source: European Union. (references)

Source: compiled by the editor from various references; see credits.

Top     

Specialty Definition: ASCII

(From Wikipedia, the free Encyclopedia)

ASCII (American Standard Code for Information Interchange, generally pronounced ass-key) is a character set and a character encoding based on the Roman alphabet as used in modern English. It is most commonly used by computers and other communication equipment to represent text and by control devices that work with text.

Overview

Like other codes, ASCII specifies a correspondence between integers that can be represented digitally and the symbols of a written language, thus allowing digital devices to communicate with each other and to process and store character-oriented information. The ASCII character encoding or a compatible extension (see below) is used on nearly all common computers, especially personal computers and workstations. The preferred MIME name for this encoding is "US-ASCII".

ASCII is a seven-bit code, meaning that it uses the integers representable with seven binary digits (a range of 0 to 127 decimal) to represent information. Even at the time that ASCII was introduced, most computers dealt with eight-bit bytes as the smallest unit of information; the eighth bit was commonly used for error checking on communication lines or other device-specific functions.

ASCII does not specify any way to represent information about the structure or appearance of a piece of text. That requires other standards, such as those specifying markup languages.

ASCII was first published as a standard in 1963 by the American Standards Association (ASA), which later became ANSI. There are many variations of ASCII, but its present, most widely-used form is ANSI X3.4-1967, also standardized as ECMA-6, ISO/IEC 646:1991 International Reference Version, and ITU-T Recommendation T.50 (09/92). It is embedded in page zero of its probable replacement, Unicode. ASCII is considered by some the most successful software standard ever promulgated.

Historically, ASCII developed from telegraphic codes. It started as a commercial 7-bit teleprinter code promoted by Bell data services. ASA reordered the code for sorting (alphabetization) of lists, and added features for devices other than teleprinters. Bell's code added punctuation and lower-case letter to the earlier 5-bit Baudot teleprinter code. Baudot automated sending and receiving of telegraphic messages and took many features from Morse code.

ASCII Control Characters

The first thirty-two codes (numbers 0-31 decimal) in ASCII are reserved for control characters: codes that may not themselves represent information, but that are used to control devices (such as printers) that make use of ASCII. For example, character 10 represents the "line feed" function (which causes a printer to advance its paper), and character 27 represents the "escape" key found on the top left of common keyboards.

Code 127 (all seven bits on) is another special character known as "delete" or "rubout". Though its function is similar to that of other control characters, it was placed at this position so that it could be used to erase a section of paper tape, a popular storage medium at one time, by punching out all its holes. Code 0 (all bits off) is ignored by many computer systems.

Many of the codes are to mark data packets, and control a data transmission protocol (i.e. enquiry (any stations out there?), acknowledge, negative acknowledge, start of header, start of text, end of text). Escape and substitute permit a protocol to mark binary data so that if it contains codes with the same values as protocol characters, the codes will be processed as data.

The separator characters (record separator, etc.) were designed for use with magnetic tape systems.

XON and XOFF are often sent from a slow device, such as a printer, to start and stop a flow of data so no data is lost.

BinaryDecimalHexAbbreviationPrintable
Representation
Name/Meaning
0000 0000000NULNull character
0000 0001101SOHStart of Header
0000 0010202STXStart of Text
0000 0011303ETXEnd of Text
0000 0100404EOTEnd of Transmission
0000 0101505ENQEnquiry
0000 0110606ACKAcknowledgment
0000 0111707BELBell
0000 1000808BSBackspace
0000 1001909HTHorizontal Tab
0000 1010100ALFLine feed
0000 1011110BVTVertical Tab
0000 1100120CFFForm Feed
0000 1101130DCRCarriage return
0000 1110140ESOShift Out
0000 1111150FSIShift In
0001 00001610DLEData Link Escape
0001 00011711DC1XON Device Control 1
0001 00101812DC2Device Control 2
0001 00111913DC3XOFF Device Control 3
0001 01002014DC4Device Control 4
0001 01012115NAKNegative Acknowledgement
0001 01102216SYNSynchronous Idle
0001 01112317ETBEnd of Trans. Block
0001 10002418CANCancel
0001 10012519EMEnd of Medium
0001 1010261ASUBSubstitute
0001 1011271BESCEscape
0001 1100281CFSFile Separator
0001 1101291DGSGroup Separator
0001 1110301ERSRecord Separator
0001 1111311FUSUnit Separator
0111 11111277FDELDelete

In the table above, the fifth column contains graphic characters that are reserved for representing the position of control codes in a data stream; your HTML user agent may require the installation of additional fonts in order to display them.

See new line.

ASCII Printable Characters

Code 32 is the "space" character, denoting the space between words, which is produced by the large space bar of a keyboard. Codes 33 to 126 are called the printable characters, which represent letters, digits, punctuation marks, and a few miscellaneous symbols.

ASCII provides some internationalization for French and Spanish (both spoken in the U.S.) by providing a backspace with the grave, accent (miscalled a "single quote"), tilde, and breath mark (inverted vel).

BinaryDecimalHexGraphic
0010 00003220(blank) (␠)
0010 00013321Exclamation mark
0010 00103422"
0010 00113523#
0010 01003624$
0010 01013725%
0010 01103826&
0010 01113927'
0010 10004028(
0010 10014129)
0010 1010422A*
0010 1011432B+
0010 1100442CComma
0010 1101452D-
0010 1110462EFull stop
0010 1111472F/
0011 000048300
0011 000149311
0011 001050322
0011 001151333
0011 010052344
0011 010153355
0011 011054366
0011 011155377
0011 100056388
0011 100157399
0011 1010583AColon
0011 1011593BSemicolon
0011 1100603C<
0011 1101613D=
0011 1110623E>
0011 1111633FQuestion mark
 
BinaryDecimalHexGraphic
0100 00006440@
0100 00016541A
0100 00106642B
0100 00116743C
0100 01006844D
0100 01016945E
0100 01107046F
0100 01117147G
0100 10007248H
0100 10017349I
0100 1010744AJ
0100 1011754BK
0100 1100764CL
0100 1101774DM
0100 1110784EN
0100 1111794FO
0101 00008050P
0101 00018151Q
0101 00108252R
0101 00118353S
0101 01008454T
0101 01018555U
0101 01108656V
0101 01118757W
0101 10008858X
0101 10018959Y
0101 1010905AZ
0101 1011915B[
0101 1100925C\\
0101 1101935D]
0101 1110945E^
0101 1111955F_
 
BinaryDecimalHexGraphic
0110 00009660`
0110 00019761a
0110 00109862b
0110 00119963c
0110 010010064d
0110 010110165e
0110 011010266f
0110 011110367g
0110 100010468h
0110 100110569i
0110 10101066Aj
0110 10111076Bk
0110 11001086Cl
0110 11011096Dm
0110 11101106En
0110 11111116Fo
0111 000011270p
0111 000111371q
0111 001011472r
0111 001111573s
0111 010011674t
0111 010111775u
0111 011011876v
0111 011111977w
0111 100012078x
0111 100112179y
0111 10101227Az
0111 10111237B{
0111 11001247C|
0111 11011257D}
0111 11101267E~

Note how uppercase characters can be converted to lowercase by adding 32 to their ASCII value; in binary, this can be accomplished simply by setting the sixth-least significant bit to 1.

Variants Of ASCII

The international spread of computer technology led to many variations and extensions to the ASCII character set, since ASCII does not include accented letters and other symbols necessary to write most languages besides English that use Roman-based alphabets. International standard ISO 646 (1972) was the first attempt to remedy this problem, although it regrettably created compatibility problems as well. ISO 646 was still a seven-bit character set, and since no additional codes were available, some were re-assigned in language-specific variants. See ISO 646 for details.

Improved technology brought out-of-band means to represent the information formerly encoded in the eighth bit of each byte, freeing this bit to add another 128 additional character codes for new assignments. Eight-bit standards such as ISO 8859 enabled a broader range of languages to be represented, but were still plagued with incompatibilities and limitations. Still, ISO 8859-1 and original 7-bit ASCII are the most common character encodings in use today. Unicode, with a much larger character repertoire, is quickly supplanting ISO 8859 and ASCII in many places, but it only maps code points to characters, and does not necessarily require that each code point be represented by a single 7-bit or 8-bit byte, as ASCII or ISO 8859 do. To the extent that it maps characters to code points, though, Unicode is backward compatible: the first 127 code points of Unicode are the same as in ASCII, and the first 256 code points of Unicode are the same as in ISO 8859-1.

The portmanteau word ASCIIbetical has evolved to describe the collation of data in ASCII code order rather than genuine alphabetical order (which requires some tricky computation, and varies with language).

ASCII contains many characters which were not commonly used, or at least spoken of, outside of the computing context; the "popularization" of these characters required that names be agreed upon for them. Some of these names are more whimsical than others. (See especially the end of the list.)

ASCIIZ or ASCIZ is an adjective used to refer to a null-terminated ASCII string.

See also

External link

ASCII is also a name of one of the oldest and most prestigious computer magazines published in Japan. See ASCII (magazine)

Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "ASCII."

Top     



Text

(From Wikipedia, the free Encyclopedia)

In language, text is something that contains words to express something. The term usually has broader meaning.

See also: boilerplate text, plain text.

Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Text."

Top     



Text encoding

(From Wikipedia, the free Encyclopedia)

A text encoding is a method of representing a piece of text as a sequence of codes (from a character encoding) for the purpose of computer storage or electronic communication of that text. While character encodings like ASCII represent individual characters of a language, a text encoding has to represent much larger things like articles and books, and must represent not only the characters they contain but the structure and organization of the text, and perhaps information about the text or its appearance. Common examples are HTML and RTF which represent texts in natural languages, and XML, which can represent many kinds of text not necessarily intended to be human-readable (the contents of a database, for example).

In general there are two basic forms of text encoding that are widely used. One is to use a markup language which adds markers to the text itself. Markup has the advantage of being easy to represent, but has the disadvantage of being hard to view without an "aware" reader application. HTML is generally unreadable if opened in a text editor for instance, at least to those unfamiliar with the format. Another method is to use "pointers" into the text, which is left in the original format. This has the advantage of allowing the content to be easily readable in any editor, although you lose the "styling". On the downside, editing such a document in a non-aware application typically leaves the pointers pointing to the wrong data. Today the majority of text encoding systems appear to use markup, although whether by choice of simple because "everyone else" does is open to question.

Though character encodings like ASCII and Unicode are not, strictly speaking, text encodings in their own right, they may serve as very simple text encodings if one wishes only to preserve the English content of a document and not necessarily its formatting. By far the most common text encoding now in use is what might informally be called "Plain ASCII", which involves simply encoding a text as a stream of ASCII characters. The specifics of how this is done vary greatly: for example, the end of a text line might be encoded as ASCII code 10 ("line feed" or "new line") as is common practice on Unix machines, or as ASCII code 13 ("carriage return") as is common on Apple machines, or as both (the sequence <13, 10> is used to end lines on MS-DOS based machines and many others, while the rather rare sequence <10, 13> was used by some Acorn machines). Some texts also use this line-end sequence inside paragraphs (with a blank line between paragraphs) while some do not. Also, various texts in this form interpret code 9 ("tab") and other control characters differently. None of these methods specify how to identify text structure like headings and tables, or special text forms like italics. Text in this format is basically readable by any computer though some work might be needed to accommodate local variations, and all information besides the actual words of the text will be lost.

Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Text encoding."

Top     

Abbreviations & Acronyms: Text

The following table is compiled from various sources, across various languages. When English abbreviations or acronyms come from a non-English source, this is noted.
EntrySourceExpressionField

TEXT

EnglishTrans-European Exchange and Transfer ConsortiumN/A
TEEnglishText editorComputing

Source: compiled by the editor, based on several corpora (additional references).

Top     

Synonyms: Text

Synonyms: school text (n), schoolbook (n), text edition (n), textbook (n), textual matter (n). (additional references)
Antonym: trade book (n). (additional references)

Top     

Synonyms within Context: Text

ContextSynonyms within Context (source: adapted from Roget's Thesaurus).

Idea

Subject, subject matter; matter, theme, gr/noemata/gr, topic, what it is about, thesis, text, business, affair, matter in hand, argument; motion, resolution; head, chapter; case, point; proposition, theorem; field of inquiry; moot point, problem; (question).

Imagination

Matter; subject, subject matter; argument, text, sum and substance.

Perseverance

Verb: persevere, persist; hold on, hold out; die in the last ditch, be in at the death; stick to, cling to, adhere to; stick to one's text, keep on; keep to one's course, keep to one's ground, maintain one's course, maintain one's ground; go all lengths, go through fire and water; bear up, keep up, hold up; plod; stick to work; (work); continue; follow up; die in harness, die at one's post.

Printing

Print, letterpress, text; context, note, page, column.

Prototype

Text, copy, design; fugleman, keynote. die, mold; matrix, last, plasm; proplasm, protoplasm; mint; seal, punch, intaglio, negative; stamp.

School

School book, horn book, text book; grammar, primer, abecedary, rudiments, manual, vade mecum; encyclopedia, cyclopedia; Lindley Murray, dictionary, lexicon.

Term

Text

Source: adapted from Roget's Thesaurus.

Top     

Crosswords: Text

English words defined with "text": ASCII text fileelectronic textGerman textmachine-displayable text, machine-readable textschool texttext edition, text editor, text file. (references)
Specialty definitions using "text": boxed textEnd Of Text, end of text characterformatted message textRich Text Formatstanding text, Start Of TextText Encoding Initiative, Text Processing Utility, Text Reckoning And Compiling, text segment, Text To Speech, TICKLE TEXT, to unthread textunabridged text. (references)
Etymologies containing "text": Zend-Avesta. (references)
Non-English Usage: "Text" is also a word in the following languages with English translations in parentheses.

Czech (lyrics, script, text, word), German (caption, libretto, line, lyric, lyrics, narrative, script, text, wording, words), Hungarian (two-line long primer), Romanian (letterpress, lyric, text), Swedish (lettering, lyric, lyrics, matter, text).

Top     

Modern Usage: Text

DomainUsage

Screenplays

I believe the subtext here is rapidly becoming the text. (Buffy the Vampire Slayer; writing credit: Doreen Spicer)

My text for today comes from Psalm 99, Verse 9: Exalt the Lord our God, and worship at his holy hill (The Englishman Who Went Up a Hill But Came Down a Mountain; writing credit: Ivor Monger; Christopher Monger)

Is that the full text of the message (What's Up, Doc?; writing credit: Peter Bogdanovich; Buck Henry)

Lyrics

Now I've often thought I'd like to write a mathematics text book because I have (New Math; performing artist: Tom Lehrer)

Movie/TV Titles

The Text of Light (1974)

Ready Text Go (2002)

Source: compiled by the editor from various references; see credits.

Top     

Commercial Usage: Text

DomainTitle

References

  • Open Text Corporation: International Competitive Benchmarks and Financial Gap Analysis (reference)

    (more reference examples)

  

Books

  • The Musa-Nama of R. Shim'on Hakham (Judeo-Iranian Text Series, No 1) (reference)

  • Heard Word: A Moralized History: The Genesis Section of the Histoire Ancienne in a Text from Saint-Jean D'Acre (Romance Monographs, Inc) (reference)

  • Text & Concordances of Sermones Contra Iudios E Moros, MS 25h: Biblioteca Publica y Provincial de Soria (reference)

  • Jude the Obscure: An Authoritative Text, Backgrounds and Sources, Criticism (A Norton Critical Edition) (reference)

  • Observable materials testing text and workbook (reference)

    (more book examples)

  

Periodicals

  

Music

  

High Tech

Source: compiled by the editor from various references; see credits.

Top     

Image Slideshow: Text

Illustrations:
Text

More pictures...

Computer Images:
Text

More pictures...

Top     

Photo Album: Text

ThumbnailDescription & CreditThumbnailDescription & Credit

From an overhead angle, a peach, a nectarine, a cherry tomato and a plum sit on a green marble table garnished with a stem of green leaves. The script text in the lower third reads: "Include 2-3 servings of fruit each day". Shot on 4x5 format. This was used in the 1989 calendar "Eat for Good Health" August 1989. See artwork: PV-19. Credit: Bill Branson (photographer).

This illustration with and without text, explains how a normal cell becomes a cancer cell. An oncogene in a normal cell appears to regulate and influence cell growth and division. When a cancer causing agent affects a cell's DNA and the oncogene is activated, a cancer cell develops. See artwork: GA-17. Credit: Jane Hurd (artist).

Text Slide Example, Mycobacterium tuberculosis. Credit: CDC.

Ancient text demonstrating use of cross-staff. Credit: Coast & Geodetic Survey Historical Image Collection.

An early diving bell used by 16th Century divers during salvage operations. The book this came from is a text on ship salvage and includes diving information. In: Regola generale di soleuare ogni fondata naue & nauilii con ragione" by Niccolo Tartaglia. Credit: National Undersea Research Program (NURP).

Text accompanying Plate I. In: "Report on the Florida Reefs", 1880, by Louis Agassiz. Memoirs of the Museum of Comparative Zoology at Harvard College, Vol. VII, No. 1. Plate I. NOAA Central Library Call No. QE565.A263 1880 These plates help document the oldest studies of the Florida Reefs. Credit: The Coral Kingdom.

Sara Elizabeth Branham inoculating a mouse to text meningitis serum. Credit: National Library of Medicine.

Photograph of a Sailor in his hammock aboard ship, with sentiments on the Navy and changes in those feelings as re-enlistment time nears. The original view was published by P. Wischmeyer, Seattle, Washington, circa 1923. The photographer, or author of the text, was G. A. Pickard, USN. Credit: NAVY.

Poster featuring Mess Attendant Harmon and USS Harmon (DE-678), which was named in his honor. He was killed in action on board USS San Francisco (CA-38) during the Naval Battle of Guadalcanal, 13 November 1942. For his heroism in that action, Mess Attendant Harmon was posthumously awarded the Navy Cross. The poster also features the text of his award citation and a representation of the Navy Cross medal. Credit: NAVY.

Illustrated arithmetic problem showing man stamping on fruit in rectangular tub and man standing in round tub, with mathematical equations and surrounding text. Credit: Library of Congress.

Source: pictures compiled by the editor from various references; see picture credits.

Top     

Digital Photo Gallery: Text
 

"Bérénice" by Pedro Valdeolmillos
Commentary: "Text detail from the Bérénice theatrical play by Racine."
"Private" by Matthew Maaskant
Commentary: "The word PRIVATE in text on a brick wall. Visit http://www.qr5.com ."

Source: photographs selected by the editor, with permission from the photographers.

Top     

Familiar Quotations: Text

AuthorQuotation

Arthur Schopenhauer

The first forty years of life give us the text; the next thirty supply the commentary on it.

Edward Gibbon

My English text is chaste, and all licentious passages are left in the obscurity of a learned language.

Henry James

To read between the lines was easier than to follow the text.

Marguerite Duras

Acting doesn't bring anything to a text. On the contrary, it detracts from it.

Source: compiled by the editor from various references.

Top     

Historic Usage: Text

AuthorDateQuotation

Treaty of Versailles

1919

In the case of any discrepancies between the text of the Treaty and this map or any other map which may be annexed, the text will be final. (reference)

Source: compiled by the editor from various references.

Top     

Use in Literature: Text

TitleAuthorQuote

Les Miserables

Hugo, Victor

God makes visible to men his will in events, an obscure text written in a mysterious language

Source: compiled by the editor from various references.

Top     

Non-Fiction Usage: Text

SubjectTopicQuote

Health

The full text of the consensus panel's statement follows. (references)

Medical terms are shown in italic print and are explained in the text or in the glossary. (references)

"Adapted" signifies that the text is reproduced with attribution, with some or no editorial adjustments. (references)

Business

This makes composing anything more than a few lines of text cumbersome. (references)

Books published in Mexico include text books, workbooks and literature in Spanish. (references)

SMS messages, Simple text messages sent over GSM digital wireless networks, have soared in number. (references)

Civil Liberties

Yemen

Officials at the National Library must read and endorse the text. (references)

Tajikistan

The Ministry of Justice's verification of the text inevitably delays the granting of registration. (references)

Turkmenistan

There has been intense Government promotion of the text as one upon which all actions and behavior in the country should be based. (references)

Economic History

Finland

Short text messages are very popular, especially among the young people. (references)

Vietnam

The complete text of the US - Vietnam BTA is available for review at www.ustr.gov. (references)

Armenia

Armenian text may be accompanied by text in a foreign language, provided the latter appears in smaller script. (references)

Human Rights

Mauritania

With international assistance, the Government continued a program to improve judicial performance and independence, which consisted of organizing all laws and statutes into a single reference text and training officials throughout the justice system. (references)

Indigenous People

Indonesia

Most of the provisions in the Papuan version survived largely intact in the final text, including permission to rename the province Papua and permission for a Papuan flag and anthem. (references)

Minorities

Pakistan

Senior government officials regularly make disparaging remarks about Ahmadis in public, and government-sponsored text books have been revised in recent years to remove all references to the contributions made by Ahmadis to society. (references)

Political Economy

SAUDI ARABIA

Instead, the new text code will include loss carry-forward provisions without any time limits. (references)

PANAMA

In May 2001, Panama and the Central American Common Market (CACM) agreed on a common text and format for a Free Trade Agreement. (references)

UNITED KINGDOM

New copyright legislation simplified the British copyright process and permitted the UK to join the most recent text of the Berne Convention. (references)

Political Rights

Mali

The President also promulgates laws within 15 days, following transmission to the Government of a final adopted text. (references)

Cote d'Ivoire

The Constitution of the Second Republic was implemented formally on August 4, 2000. The Constitution was drafted by the CNSP-created Constitutional and Electoral Consultative Commission (CCCE), which was made up of members of major political parties and civil society; however, the CNSP and General Guei made changes to the CCCE's text prior to submitting the draft Constitution to a referendum. (references)

Trade

Moldova

Text in other languages may be used in addition to the Romanian text. (references)

Travel

Canada

All forms of communication and transmission are possible, including voice, text, data, and video. (references)

Sweden

Consequently most business leaders have been taught the same operating principles by professors who have collaborated on writing the text. (references)

Kuwait

One page of typing of English text costs approximately US$5.00. A business executive hotel guest may use these services on a walk-in basis. (references)

Worker Rights

El Salvador

On May 9, the NLC made public the text of an August 2000 report by the Labor Ministry on conditions in the country's maquilas. (references)

Russia

Moreover the law does not require management to sign the agreement, even after both sides have signed protocols approving a draft text. (references)

Burma

The Committee also criticized the Government for not implementing the provisions of ILO Convention 87 on Freedom of Association and Protection of the Right to Organize, which the Government ratified in 1955. In his testimony to the Committee, a government representative said that the Trade Unions Law was being revised, but that he could not provide the draft text at the present time. (references)

Lexicography

Devil's Dictionary

ABRACADABRA. By Abracadabra we signify An infinite number of things. 'Tis the answer to What? and How? and Why? And Whence? and Whither? -- a word whereby The Truth (with the comfort it brings) Is open to all who grope in night, Crying for Wisdom's holy light. Whether the word is a verb or a noun Is knowledge beyond my reach. I only know that 'tis handed down. From sage to sage, From age to age -- An immortal part of speech! Of an ancient man the tale is told That he lived to be ten centuries old, In a cave on a mountain side. (True, he finally died.) The fame of his wisdom filled the land, For his head was bald, and you'll understand His beard was long and white And his eyes uncommonly bright. Philosophers gathered from far and near To sit at his feat and hear and hear, Though he never was heard To utter a word But "Abracadabra, abracadab, Abracada, abracad, Abraca, abrac, abra, ab!" 'Twas all he had, 'Twas all they wanted to hear, and each Made copious notes of the mystical speech, Which they published next -- A trickle of text In the meadow of commentary. Mighty big books were these, In a number, as leaves of trees; In learning, remarkably -- very! He's dead, As I said, And the books of the sages have perished, But his wisdom is sacredly cherished. In Abracadabra it solemnly rings, Like an ancient bell that forever swings. O, I love to hear That word make clear Humanity's General Sense of Things. Jamrach Holobom

Source: compiled by the editor from ICON Group International, Inc.; see credits.

Top     

Spoken Usage: Text

SpeakerPhrase(s)

Jodie Foster

Literature, which I think is really helpful because it's about reading and about reading the text and interpreting it.

Source: compiled by the editor from various references; see credits.

Top     

Speeches: Text

SpeakerTermPhrase(s)

Richard Nixon

1969-1974The full text of both letters is being released to the press.

Source: compiled by the editor from various references.

Top     

Usage Frequency: Text

"Text" is generally used as a noun (singular) -- approximately 100.00% of the time. "Text" is used about 7,657 times out of a sample of 100 million words spoken or written in English. Its rank is based on over 700,000 words used in the English language. Some parts-of-speech are not covered due to the samples used by the British National Corpus. (note: percents less than one-hundredth of one percent have been omitted)
Parts of SpeechPercentUsage per
100 Million Words
Rank in English
Noun (singular)100%7,6571,264

Source: compiled by the editor from several corpora; see credits.

Top     

Usage in Company Names: Text

CountryName
Canada

Open Text Corporation

 (more examples...)

Source: compiled by the editor from Icon Group International, Inc.

Top     

Expressions: Text

Expressions using "text": ascii text file boxed text brief text centered text cling to the text comment upon a text display text electronic text end Of Text end of text character formatted message text free from message text free text German text help text files hidden text omitted public text original text printed text proof text religious text revisable form text rich Text Format sacred text school text standing text start Of Text stick to one's text structured message text text attribute Text blindness text book text boundaries text coherency text control text editing text edition text editor text Encoding Initiative text example text file text hand Text letter text message Text pen text Processing Utility text Reckoning And Compiling text replace text screen text scroll text segment text statistics text templates text To Speech to unthread text traditional text unabridged text unjustified text variable text written text. Additional references.

Hyphenated Usage

Beginning with "text": text-adventure, text-analysis, text-and-data, text-archives, text-as-product, text-attachment, text-attatchment, text-base, text-based, Text-book, text-books, text-by-text, text-centred, text-copying, text-databases, text-driven, text-files, text-graphics, Text-hand, text-handling, text-hung, text-illustrative, text-immanent, text-intensive, text-linguistics, text-maker, text-methods, text-only, text-on-the-wall-as-art, text-processing, text-processors, text-producers, text-reader, text-receivers, text-related, text-retrieval, text-searching, text-sentence, text-sentences, text-to-hypertext, text-to-speech, text-type, text-types, text-world, text-worlds, text-writers.

Ending with "text": co-text, full-text, Gore-text, non-text, sub-text.

Containing "text": author-text-reader.

Source: compiled by the editor from various references; see credits.

Top     

Frequency of Internet Keywords: Text

The following statistics estimate the number of searches per day across the major English-language search engines as identified by various trade publications. Hyperlinks lead to commercial use of the expression at Amazon.com.
 
ExpressionFrequency
per Day
ExpressionFrequency
per Day

text twist

11,678

funny text message

207

text to speech

1,693

sprint text messaging

191

text messaging

1,261

college text book

191

text message

1,171

cool text

191

text

1,023

at t text messaging

190

flaming text

838

flaming text.com

185

free text message

710

text to voice

177

text editor

702

sprint text message

155

free text messaging

599

7 effects psp text

155

function htmlencode text

482

cingular text messaging

154

1252 charset content content equiv html text type window

398

3d text

151

send text message

378

text reader

149

used text book

288

text picture

148

text twister

280

text art

144

game text twist

262

flamming text

140

super text twist

246

animated text

139

free text

238

cingular text message

127

send a free text message

237

song text

127

verizon text messaging

221

att text messaging

119

verizon text message

216

nextel text messaging

118
Source: compiled by the editor from various references; see credits.

Top     

Modern Translation: Text

Language Translations for "text"; alternative meanings/domain in parentheses.

Afrikaans

  

teks (lyric). (various references)

   

Albanian

  

tekst (context). (various references)

   

Arabic 

  

‏متن الكتاب, ‏نص (draw up, purview, version), ‏آية من الكتاب المقدس, ‏شاهد (attestation, behold, evidence, see, sight, telltale, view, witness). (various references)

   

Bulgarian 

  

цитат от библията (scripture), текст (letterpress, purview, script), тема (area, argument, chapter, message, motif, motive, subject, subject matter, theme, topic), книги посочени като източници, проповед (exhortation, homily, jobation, preach, pulpit, rant, sermon). (various references)

   

Chinese 

  

課文 , 文本, 案文 . (various references)

   

Czech

  

text (lyrics, script, word), téma (subject, subject matter, theme, topic), pasáž (arcade, passage). (various references)

   

Danish

  

tekst (lyric). (various references)

   

Dutch

  

tekst (lyric). (various references)

   

Esperanto

  

teksto (lyric). (various references)

   

Faeroese

  

læribók (text-book). (various references)

   

Farsi 

  

مفاد (Content, Context, Intent, Purporst, Scope, Sense, Significance, Substance, Tenor), موضوع (Head, Issue, Motif, Object, Point, Problem, Proposition, Question, Subject, Theme, Topic), متن (Version), نص , کتاب درسی (Textbook). (various references)

   

Finnish

  

teksti (caption, lesson, lyric, print, wording). (various references)

   

French

  

texte (terms). (various references)

   

German

  

Text (caption, libretto, line, lyric, lyrics, narrative, script, wording, words). (various references)

   

Greek 

  

κείμενο (passage). (various references)

   

Hebrew 

  

מובאה (citation, extract, quotation), מקרא (assembly, convocation, key, legend, recitation), תמליל, כתוב (inscribed, passage, verse, written), גרסה (reading, study, version), טקסט, נוסח (copy, custom, formula, manner, style, version). (various references)

   

Hungarian

  

szöveg (lyrics, pitch, rap, spiel, yackety-yak, yack-yack). (various references)

   

Indonesian

  

teks, isi tulisan. (various references)

   

Italian

  

testo (lyric, script). (various references)

   

Japanese Kanji 

  

翻案 (adaptation of story