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).
6
votes
10answers
416 views
Leaving out the last semicolon of a CSS block
Couple of questions concerning this:
Is it good practice?
Will it, on a large scale, result in better load times?
Can it result in browsers 'breaking'?
Is the same true for the last function in ...
6
votes
1answer
661 views
How can I setup webstorm to automatically add semi-colons to javascript functions, methods, etc
When I write Javascript, I use semi-colons. However when I write in webstorm/phpstorm, it auto completes braces and brackets, but doesn't auto-add a semicolon. Yes I know that isn't required per the ...
0
votes
1answer
460 views
C++ syntax error : missing ';' before '<'
Ehh, I'm having an issue which i don't understand...
class ManagedGlobals
{
public: gcroot<Editor^> MainEditor;
};
Why does my compiler give me:
syntax error : missing ';' before '<'
...
0
votes
1answer
92 views
Put semicolons in asi mode before brackets
I'm linting my javascript with JSHint, and have this option enabled
"asi": true,
"white": true
to avoid semicolons in my code.
But I have to begin my new line with a bracket, so I have to put a ...
1
vote
1answer
216 views
C# XmlReader Colon Issues (Namespace)
I have a strange problem with the XMLReader class. I get atom feed from a URl, and some elements of the xml tree are named like these:
<element:title>Hello World!</element:title>
...
2
votes
2answers
216 views
Why this executes without semicolon?
here is simple PHP code which executes without semicolon
<?php
for($a=1; $a<=10;Print $a,$a++)
?>
how this is possible?
1
vote
3answers
294 views
What kind of statements don't require semicolon termination in C++?
Is there a rule regarding which statements don't need to be terminated with a semicolon?
1
vote
1answer
214 views
Parsing SQL containing semicolon (in PHP)
I coded a sql parser that load data from a mysql dump, the problem is that some sql statements contain semicolon themselves so my parser take it as EOL as I use
$sqlRows = explode(';', $sqlFile);
...
0
votes
1answer
83 views
Trouble creating symlink with semicolon in it from powershell
So i normally use this syntax to create as symbolic link from powershell.
PS C:\> cmd /c mklink LinkName TargetFolder
However there im getting this error when im trying to create a symlink with ...
3
votes
2answers
542 views
c++: switch statement missing semicolon before close brace
In the interest of future readers and my own sanity later, I like to make it absolutely clear that switch statements that do not have a default case (due to all cases being covered) or sequential ...
0
votes
1answer
97 views
jshint: funky code vs semicolons; how to silence all of jshint's complaints about semicolons here?
Now, I'm not a fan of ASI. But given that this is perfectly legit javascript, where exactly is it here that jshint (repeatedly, 8 times over) is expecting to find a semicolon?
...
1
vote
1answer
535 views
Calling recursive function inside a loop
I'm getting two problem when I call the recursive function inside a loop.
Consider the following sample code:
int fact(int x)
{
if(x == 1)
return 1;
return x*fact(x-1);
}
int main() ...
1
vote
1answer
176 views
how to make hibernate hbm2ddl generate sql with semicolon?
I use hibernate hbm2ddl to generate db schema script from entity classes. it works well but each line ends without a semicolon, which makes me have to manually add them. Is there any way to save me ...
0
votes
1answer
108 views
EBNF Colon and Semicolon usage?
I have no idea what a colon means in BNF or EBNF. It's not listed anywhere on the internet. Anyway, my professor decided to assign it in the homework. I think he is confusing it with a semicolon or ...
2
votes
2answers
622 views
How to execute mysql code with semicolon in php?
The code is
INSERT INTO `semicolon` VALUES ('1', 'a:1:{s:4:\"size\"';\s:2:\"24\";\}');
As you might see in double single quotes there is ; - semicolon and it splits the code because its the ...
16
votes
4answers
4k views
Can you use semicolons in Ruby?
When learning Ruby, I noticed that in all the examples there are no semicolons. I am aware that this is perfectly fine as long as each statement is on its own line. But what I am wondering is, can you ...
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 ...
1
vote
7answers
655 views
Semicolon after double slash in C
I have a question about comments in C language.
When we write for example
//this is the first step
This means a comment.
But when we write
//this is the first step;
Does this also mean a ...
2
votes
2answers
416 views
What is the effect of a semicolon at the end of a line?
What is the effect of having a semicolon at the end of a line of code?
I've seen this in some code I've taken over:
Printer.Print "Customer: " & strCustomerName & " (" & strCustomerCode ...
0
votes
1answer
1k views
Behavior of a Semicolon after for Loop Declaration
Most for loops have the syntax:
for(initializer; condition; incrementer) {
// code
// code
}
If theres only one line of code, it may follow this syntax:
for(initializer; condition; ...
0
votes
2answers
305 views
What are the criteria for automatic semicolon insertion? [duplicate]
Possible Duplicate:
What are the rules for Javascript's automatic semicolon insertion?
JavaScript befuddles me with its implicit line termination. It's a very C-like language, except ...
6
votes
7answers
2k views
Why is a semicolon required at end of line?
Why does this work:
a = []
a.push(['test']);
(function() {alert('poop')})()
But this gives the error "number is not a function":
a = []
a.push(['test'])
(function() {alert('poop')})()
The only ...
7
votes
1answer
4k views
In Bash, when do lines need to be terminated with a semi-colon? [duplicate]
Possible Duplicate:
Semicolons superfluous at the end of a line in shell scripts?
In which situations in Bash scripts do you need a semicolon at the end of a line? I had thought it was just ...
0
votes
6answers
626 views
Split semicolon file into arrays, something strange
I want to split a word string that every word is splited with a semicolon into a array.
Why is the length of this string just 2? How can I make the length of the array to always bee 6, because every ...
-2
votes
3answers
527 views
How can I write readable Python code when there are no curly brackets and semicolons? [closed]
I love the semicolons and curly brackets from C and PHP.
Now I am starting to program with Python and when the code gets bigger it seems to me very messy without them(the curly brackets and ...
-1
votes
1answer
725 views
error C2146: syntax error : missing ';'
I hate to ask for help on such a common error but I've been staring and prodding at my code for two hours trying to find what the compiler says is a missing semi-colon and unspecified type:
error ...
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
7answers
645 views
php turn line break into semicolon
I have a csv file with this:
software
hardware
educational
games
languages
.
.
.
I need a new csv file with:
software;hardware;educational;games;languages;....
How can I do that?
I'm doing:
...
1
vote
4answers
213 views
Does a semi-colon matter in JavaScript [duplicate]
Possible Duplicates:
do we need semicolon at the end
Why use semicolon?
Are semicolons needed after an object literal assignment in JavaScript?
Should I use semi-colons in javascript?
...
0
votes
2answers
275 views
MSVS unexpected class error: Didn't forget the semicolon though
In my code below, I get this compiler error error C2236: unexpected 'class' 'Pawn'. Did you forget a ';'? But as you can see plainly, I'm not missing a semi colon... am I? I used to think it was a ...
-1
votes
2answers
311 views
Are semicolons mandatory in javascript statements?
I want to know, is this legal?
function test()
{
alert ("hello")
$("#loading").show();
}
Or should I write this instead:
function test()
{
alert ("hello");
$("#loading").show();
}
...
2
votes
3answers
197 views
What is the logic of C++ punctuator usage?
I am trying to discern the logic behind punctuator usage in C++. Particularly the semicolon.
This is my progress so far, with some questions:
A declaration introduces a type, class or object into a ...
6
votes
2answers
265 views
When/why did Lisps start using semicolons for comments?
What is the history of the semicolon being used for comments in Lisp and its dialects?
A guy in our group thought Clojure's use of the semicolon was an in-your-face to Java & Co. at first.
I ...
1
vote
1answer
1k views
Semi-colon as separator in jasperreport csv editions
I want to makes my jasperrepport's csv documents values separated with semicolons instead of commas.
I've found net.sf.jasperreports.export.csv.field.delimiter parameter which works if i adds it on ...
1
vote
2answers
180 views
I must be missing something - semicolon error that makes no sense
This is the source of my page. I'm getting a mysterious CS1002 error. Been looking at this for awhile now and can't figure it out.
<%@ Page language="C#" validateRequest=false %>
<%@ Import ...
-1
votes
1answer
195 views
What is the escape character for semi-coloon(;) in xslt
can't seem figure out the escape character for semi-colon(;)
i'm trying to put this line in my head tag
<META http-equiv="Content-Type" content="text/html; charset=UTF-16">
but the ...
10
votes
2answers
2k views
Semicolons superfluous at the end of a line in shell scripts?
I am editing this shell script (by somebody else) which contains the following.´:
case $1 in
0 )
echo $1 = 0;
OUTPUT=3;;
1 )
echo $1 = 1;
OUTPUT=4;;
2 )
echo $1 = 2;
...
10
votes
12answers
3k views
What is semicolon in c++?
Roughly speaking in C++ there are operators (+ , - * [] new ...), identifiers (names of classes, variables, functions,...), const literals (10, 2.5, "100",...), some keywords (int, class, typename, ...
1
vote
2answers
286 views
missing semicolon breaks script unexpectedly
NOTE: originally, i thought the issue was caused by something more complex; i see now (and edited the title and sample code) that the only difference is the presence or absence of a semicolon. that ...
2
votes
1answer
626 views
Matlab: quickly finding lines with missing semicolons [duplicate]
Possible Duplicate:
Is there a way to fix all MATLAB mlint messages at once?
If one forgets to place a semicolon at the end of a line, Matlab just prints the output of that line to the ...
2
votes
2answers
227 views
Aptana complaining about JavaScript semicolons
Why does Aptana with either validator (Mozilla or JSlint) complain about this code:
var collectionOfValues = {
key0 : value0;
key1 : value1;
key2 : value2;
};
It works fine with , but ...
2
votes
3answers
241 views
Why no semicolon at the end of js expression in javascriptmvc app?
I am starting to learn javascriptmvc, and in code samples, I see code without semicolons at the end of expressions. Does this count on automatic semicolon insertion or am I missing something? code ...
1
vote
5answers
246 views
Javascript: Situation with no semi colon needed?
I am setting up some data to do an ajax post and the code looks like this.
var data = {}
data.someId= 3;
data.anotherId = 4;
and this works fine. But why don't I need a semi-colon at the end of the ...
1
vote
2answers
731 views
C# build json string that has semicolons in the data
I am creating a string as follows:
string title = "Q:hello";
I then want to embed this string in a JSON string to send to the client. How do I escape the semicolon? I don't want to use a library.
...
1
vote
1answer
695 views
why the semicolon couldn't place in the CommandText of a OracleCommand when C#
why the semicolon(';') couldn't place in the CommandText of a OracleCommand when C#
just lick below
string sql = "select * from table1;";
OracleCommand oc = new OracleCommand(sql , con);
...
8
votes
6answers
1k views
Does C# allow double semicolon ; ; if so, are there any special ways?
I am writing a statement and it compiles, but the compiler [VS] never tells me that I put the semicolon two times.
This means in ASP.NET MVC 3
return Json(mydata);;
return Json(mydata);
Both of ...
1
vote
4answers
422 views
why must i don't put a semicolon at the end of class declaration in c# [closed]
In c# class declaration
class thing
{
...
}
maybe this question is a little silly.Why at the end of class declaration don't inlucde the semicolon.It's really different from c plus plus.you can ...
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 ...
4
votes
1answer
480 views
Why do I need semicolons after these imports?
I never really used Traits much in Scala so far, and I want to change this. I have this code:
import tools.nsc.io.Path
import java.io.File
trait ImageFileAcceptor extends FileAcceptor {
override ...
1
vote
3answers
168 views
I'm getting a semicolon error in PHP and can't understand why it's a problem
This is the error message:
Parse error: syntax error, unexpected ';' in /home1/goldensu/public_html/camira/contactForm.php on line 155
and this is the code:
$sendMessage = "Someone is ...

