Share on Facebook Share on Twitter Email
Answers.com

semicolon

 
Dictionary: sem·i·co·lon   (sĕm'ĭ-kō'lən) pronunciation
 
n.

A mark of punctuation (;) used to connect independent clauses and indicating a closer relationship between the clauses than a period does.


Search unanswered questions...
Enter a word or phrase...
All Community Q&A Reference topics
 

In programming, the semicolon (;) is often used to separate various elements of an expression. For example, in the C statement for (x=0; x<10; x++) the semicolons separate the starting value, number of iterations and increment).

Download Computer Desktop Encyclopedia to your iPhone/iTouch

 
Grammar Dictionary: semicolon
Top

A punctuation mark (;) used to join two independent clauses in a sentence. The semicolon shows that the ideas in the two clauses are related: “Jack really didn't mind being left without a car; he had the house to himself.”

 
Word Tutor: semicolon
Top
pronunciation

IN BRIEF: A punctuation mark that divides complete sentences that are related or divides a long list in a sentence.

pronunciation He thought the sentence needed a semicolon.

 
Wikipedia: Semicolon
Top
;

Punctuation

apostrophe ( ' )
brackets ( ( ) ), ( [ ] ), ( { } ), ( < >)
colon ( : )
comma ( , )
dashes ( , , , )
ellipses ( , ... )
exclamation mark ( ! )
full stop/period ( . )
guillemets ( « » )
hyphen ( -, )
question mark ( ? )
quotation marks ( ‘ ’, “ ” )
semicolon ( ; )
slash/stroke ( / )
solidus ( )
Word dividers
spaces ( ) () () ( ) () () ()
interpunct ( · )
General typography
ampersand ( & )
at sign ( @ )
asterisk ( * )
backslash ( \ )
bullet ( )
caret ( ^ )
currency generic: ( ¤ )
specific: ฿, ¢, $, , , £, , ¥, ,
daggers ( , )
degree ( ° )
inverted exclamation mark ( ¡ )
inverted question mark ( ¿ )
number sign/pound/hash ( # )
numero sign ( )
ordinal indicator (º, ª)
percent (etc.) ( %, ‰, )
pilcrow ( )
prime ( )
section sign ( § )
tilde ( ~ )
umlaut/diaeresis ( ¨ )
underscore/understrike ( _ )
vertical/pipe/broken bar ( |, ¦ )
Uncommon typography
asterism ( )
index/fist ( )
therefore sign ( )
because sign ( )
interrobang ( )
irony mark ( ؟ )
lozenge ( )
reference mark ( )

A semicolon ( ; ) is a conventional punctuation mark with several uses, mainly for pauses in sentences and breaks in lists. The Italian printer Aldus Manutius the Elder established the practice of using the semicolon mark to separate words of opposed meaning, and to indicate interdependent statements.[1] The earliest, general use of the semicolon in English was in 1591; Ben Jonson was the first notable English writer to use them systematically. The modern uses of the semicolon are discussed below, and relate either to the listing of items, or to the linking of related clauses.

Contents

English usage

Semicolons are followed by a lower case letter, unless that letter begins a proper noun. They have no spaces before them, but one or two spaces after. Applications of the semicolon in English include:

  • Between closely related independent clauses not conjoined with a co-ordinating conjunction:
    • "I went to the swimming pool; I was told it was closed for routine maintenance."
    • "A man chooses; a slave obeys."
  • Between independent clauses linked with a transitional phrase or a conjunctive adverb: "I like to eat cows; however, I don't like to be eaten by them."
  • Between items in a series or listing containing internal punctuation, especially parenthetic commas, where the semicolons function as serial commas:
    • "She saw three men: Donald, who came from New Zealand; John, the milkman's son; and George, a gaunt kind of man."
    • "Several fast food restaurants can be found in each of London, England; Paris, France; Dublin, Ireland; and Madrid, Spain."
    • "Examples of familiar sequences are: one, two, and three; a, b, and c; and first, second, and third."

Other languages

Arabic

Semicolon in Arabic is called Fāṣila Manqūṭa (Arabic: فاصلة منقوطة‎) which means literally "a dotted comma", and is written inverted ( ؛ ). In Arabic, the semicolon has several uses:

  • It could be used between two phrases, in which the first phrase causes the second.
Example: "He played much; so, his clothes became dirty". (Arabic: لقد لعب كثيرًا؛ فاتسخت ملابسه.‏‎)
  • It could be used in two phrases, where the second is a reason in the first.
Example: "Your sister did not get high marks; because she didn't study sincerely". (Arabic: لم تحقق أختك درجات عالية؛ لأنها لم تتأنَ في دراستها.‏‎)

Greek and Church Slavonic

In Greek and Church Slavonic, a semicolon indicates a question, similar to a Latin question mark. To indicate a long pause or separate sections, each with commas (the semicolon's purpose in English), Greek uses an interpunct ( · ) and an ano teleia ( · ).

Example:

Με συγχωρείτε· πού είναι οι τουαλέτες; (Excuse me; where are the toilets?)

Computing usage

In computer programming, the semicolon is often used to separate multiple statements (for example, in Pascal and SQL). In other languages, semicolons are required after every statement (such as in Perl, Java, and the C family). Other languages (for instance, some assembly languages and LISP dialects) use semicolons to mark the beginning of comments.

Example C++ code:

int main(void) 
{
 int x, y;
 x = 1; 
 y = 2;
 std::cout << x << std::endl;
 return 0;
}

In computer systems, the semicolon is represented by Unicode and ASCII character 59 or 0x3B. The EBCDIC semicolon character is 94 or 0x5E.


The semicolon is often used to separate elements of a string of text. For example, multiple e-mail addresses in the "To" field in some e-mail clients have to be delimited by a semicolon.

The semicolon is commonly used as parts of emoticons, in order to indicate winking.

In Microsoft Excel, the semicolon is used as a list separator, especially in cases where the decimal separator is a comma, such as 0,32; 3,14; 4,50, instead of 0.32, 3.14, 4.50.

In MATLAB, the semicolon can be used as a row separator when defining a vector or matrix (whereas a comma separates the columns within a row of a vector or matrix) or to execute a command silently, without displaying the resulting output value in the console.

In HTML, a semicolon is used to terminate a numeric character reference.

Mathematics

In the argument list of a mathematical function f(x_1, x_2, \dots; a_1, a_2, \dots), a semicolon may be used to separate variables and parameters.

In differential geometry, a semicolon preceding an index is used to indicate the covariant derivative of a function with respect to the coordinate associated with that index.

References

  1. ^ Truss, Lynne. Eats, Shoots & Leaves, 2003. p. 77. ISBN 1-592-40087-6.
  • Hacker, Diana (2002). The Bedford Handbook (6th ed. ed.). Boston: Bedford/St. Martin's. ISBN 0-312-41281-9. 

External links


 
Translations: Semicolon
Top

Dansk (Danish)
n. - semikolon

Nederlands (Dutch)
puntkomma

Français (French)
n. - point-virgule

Deutsch (German)
n. - Semikolon

Ελληνική (Greek)
n. - (γραμμ.) άνω τελεία (;)

Italiano (Italian)
punto e virgola

Português (Portuguese)
n. - ponto e vírgula (m)

Русский (Russian)
точка с запятой

Español (Spanish)
n. - punto y coma

Svenska (Swedish)
n. - semikolon

中文(简体)(Chinese (Simplified))
分号

中文(繁體)(Chinese (Traditional))
n. - 分號

한국어 (Korean)
n. - 세미콜론 (;)

日本語 (Japanese)
n. - セミコロン

العربيه (Arabic)
‏(الاسم) ألشوله ألمنقوطه (في ألكتابه وألطباعه)‏

עברית (Hebrew)
n. - ‮נקודה ופסיק‬


 
Best of the Web: semicolon
Top

Some good "semicolon" pages on the web:


American Sign Language
commtechlab.msu.edu
 

Math
mathworld.wolfram.com
 
 
 
Learn More
XL Enter date/time (technology)
fused sentence
prepend (computer jargon)

Post a question - any question - to the WikiAnswers community:

 

Copyrights:

Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2007. Published by Houghton Mifflin Company. All rights reserved.  Read more
Computer Desktop Encyclopedia. THIS COPYRIGHTED DEFINITION IS FOR PERSONAL USE ONLY.
All other reproduction is strictly prohibited without permission from the publisher.
© 1981-2009 Computer Language Company Inc.  All rights reserved.  Read more
Grammar Dictionary. The New Dictionary of Cultural Literacy, Third Edition Edited by E.D. Hirsch, Jr., Joseph F. Kett, and James Trefil. Copyright © 2002 by Houghton Mifflin Company. Published by Houghton Mifflin. All rights reserved.  Read more
Word Tutor. Copyright © 2004-present by eSpindle Learning, a 501(c) nonprofit organization. All rights reserved.
eSpindle provides personalized spelling and vocabulary tutoring online; free trial Read more
Wikipedia. This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Semicolon" Read more
Translations. Copyright © 2007, WizCom Technologies Ltd. All rights reserved.  Read more

 

Mentioned in