the semicolon is often used to separate multiple statements (for example, in Perl, Pascal, PL/I, and SQL). In other languages, semicolons are called terminators and are required after every statement (such as in Java, and the C family).

learn more… | top users | synonyms

1
vote
7answers
1k views

How actually does this if statement work

It has been a popular question that how to print hello world without using semicolon.I know many codes but this one sounds weird because I am unable to get the logic behind it.Please help me know how ...
0
votes
2answers
2k views

XSLT Error: A semi colon character was expected

I've got this url that I need to place in a link in some XSL. Not sure where the problem is. If I pull the link out of the XSL it works fine. a ...
5
votes
6answers
312 views

PHP, C++, etc. syntax explanation

Why is it that in most programming languages it is required to have a semicolon after statements but not after things like if elseif and else. Do the compilers all look out for newlines? If that's ...
12
votes
1answer
1k views

IntelliJ and the semi-colon character

I'm finally making the voyage back to IntelliJ via Eclipse. Currently my Eclipse is set up so that if I currently have a statement such as this (where ^ denotes where my cursor currently sits): ...
0
votes
1answer
1k views

Semi-Colon In String in PHP

I am retrieving an html document from a MySQL db through PHP, and it has semi-colons in the style tags like this style="background-color:black;display:block" I've had issues with the quotes, and ...
43
votes
3answers
4k views

What are the rules for Javascript's automatic semicolon insertion (ASI)?

Well, first I should probably ask if this is browser dependent. I've read that if an invalid token is found, but the section of code is valid until that invalid token, a semicolon is inserted before ...
2
votes
3answers
932 views

What is the most efficient way to find missing semicolons in VS with C++?

What are the best strategies for finding that missing semicolon that's causing the error? Are there automated tools that might help. I'm currently using Visual Studio 2008, but general strategies for ...
8
votes
3answers
2k views

When would you put a semicolon after a method closing brace?

I've been programming in Java for a while, and I've just come across this syntax for the first time: public Object getSomething(){return something;}; What's interesting me is the final semicolon. ...
20
votes
6answers
4k views

When should I use a semicolon after curly braces?

Many times I've seen a semicolon used after a function declaration, or after the anonymous "return" function of a Module Pattern script. When is it appropriate to use a semicolon after curly braces?
27
votes
6answers
3k views

Why use semicolon?

Are there any reasons, apart from subjective visual perception and cases where you have multiple statements on the same line, to use semicolon at the end of statements in Javascript? It looks like ...
1
vote
2answers
187 views

Enforce semicolons in my Javascript?

How best does the developer who's decided he likes semicolons at the end of his Javascript statements enforce that expectation technically for himself? I'm using Visual Studio (ASP.NET webapps), but ...
5
votes
4answers
522 views

Is semicolon really needed after declarations in x++?

As said in the book Microsoft Dynamics AX 2009 Programming: Getting Started it´s needed to put semicolons after declarations in x++: The extra semicolon after the variable declaration is ...
1
vote
1answer
1k views

Add SemiColon to each value (each line) in a cell

i have the following values in a single cell let be A1 1234 567 454 Likewise all the A(N) are filled with values. N various from 1000 to 1500 i want this to get converted as 1234;567;454 Any ...
23
votes
2answers
908 views

What does the leading semicolon in JavaScript libraries do?

In several JavaScript libraries I saw this notation at the very beginning: /** * Library XYZ */ ;(function () { // ... and so on While I'm perfectly comfortable with the "immediately executed ...
57
votes
6answers
10k views

Best practice for semicolon after every function in javascript?

I've seen different developers include semicolons after functions in javascript and some haven't. Which is best practice? function weLikeSemiColons(arg) { // bunch of code }; or function ...
2
votes
4answers
185 views

How to retrieve data and not entire lines in C?

Right now I use: char record[BUFLEN]; if(fgets(record, BUFLEN, fp) != NULL) { /* some code */ } to get lines from input like: city=Boston;name=Bob;age=35 city=New ...
3
votes
4answers
1k views

Utility to auto insert semicolons in javascript source code?

The question is pretty self explanatory. I'm working with code from multiple developers. Some of whom are inconsistent in their use of semicolons, and I just want them after every line for ...
1
vote
4answers
552 views

In which language did semicolon first appear as a terminator?

In similar manner to the similar question about generics. What was its first appearance, and how did spread to C? edit: corrected question based on Jon Skeet's answer (; is a terminator, not a ...
11
votes
9answers
1k views

Why is it bad to put a space before a semicolon?

The perlstyle pod states No space before the semicolon and I can see no reason for that. I know that in english there should not be any space before characters made of 2 parts ( like ...
0
votes
4answers
2k views

Convert Semi-Colon Text to Excel

I need to convert a semi-colon delimited file to an Excel. However, there are some fields that must be removed from the Excel file, and some extra fields to be added. These extra fields are drop-down ...
31
votes
6answers
8k views

Semi Colon after class declaration braces

Apologies in advance for what is probably a stupid question, but in C++ classes, why the semi-colon after the closing brace? I regularly forget it and get compiler errors, and hence lost time. Seems ...
3
votes
8answers
2k views

Should I use semi-colons in javascript? [duplicate]

I've only written a small amount of javascript, that runs embedded in a java application, but tested using QUnit, has been mixed and I've not noticed any problems yet. Is there some conventional ...
1
vote
10answers
1k views

What are the trade-offs between languages that terminate statements with semicolons and those that don't? [closed]

Are there any benefits to languages that terminate statements with a semicolon (C, Perl, etc.) compared with those that don't (Python, Ruby, etc.), or vice versa? (Note to late-comers: the original ...

1 2 3