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).
-5
votes
2answers
163 views
Semicolon and Comma in c [closed]
Why do these programs work, and why do I not get a "semicolon missing" error? With this question i want to ask that when i can skip semicolons. As far as i know semicolon is sentence terminator. Is ...
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 ...
25
votes
3answers
987 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 ...
3
votes
3answers
81 views
Why is it that semicolons are not used after if/else statements? [closed]
I understand that it is good syntax to use semicolons after all statements in Javascript, but does any one know why if/else statements do not require them after the curly braces?
1
vote
0answers
68 views
Why can some blocks be replaced by semicolons while others can't?
As the title says, I am wondering why some blocks in C# can be replaced by semicolons while others can't.
Example:
// These are valid
while(anything);
using(var x = new Stuff());
for(var i = 0; a ...
0
votes
2answers
53 views
R - split string with 2 delimiters, remove duplicate and put the frame back?
I have the following dataframe (df1):
someName someMOD someValue someID someSymbol
FGR8 A(P);A(Z);M(O),A(Z),P(L) 4234 1 X
MZ66 C(P),M(O);M(O),A(Z),P(L) 434 23 Y
O161 ...
0
votes
1answer
11 views
Double semi-colon in batch file
What is line 2 designed to do?
1) PATH=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%FTPCABin%;%FTPAutoSysBin%;
2) PATH=%PATH:;;=;%
PATH is the same, before and after line 2 ...
3
votes
1answer
60 views
Lua Semicolon Conventions
I was wondering if there is a general convention for the usage of semicolons in Lua, and if so, where/why should I use them? I come from a programming background, so ending statements with a ...
26
votes
14answers
2k views
semicolon at end of if statement
Today, after half an hour of searching for a bug, I discovered that it is possible to put a semicolon after an if statement instead of code, like this:
if(a == b);
//do stuff
which basically means ...
-1
votes
1answer
31 views
Javascript syntax semicolon [closed]
I am new to javascript. I have this code which I want to know what exactly is happening. This might be really a small and a silly question, but any help regarding the matter would be very grateful. ...
2
votes
2answers
34 views
dash double semicolon (;;) syntax
I'm tried to find way to run multiple commands in parallel in sh and wait for it completion.
I've found that following doesn't work (sh: 1: Syntax error: ";" unexpected):
sh -c '(sleep 3 && ...
0
votes
0answers
44 views
How to create a Line Break after the a semi-colon in Excel?
I've been trying for a few hours and can not seem to find the answer to it.
I have an CSV file open in Excel and I need to create a Line Break every time there is a semi-colon after a sentence. So in ...
0
votes
2answers
4k views
Syntax error 1084: Expecting semicolon before leftbrace
Did make a Flash banner and it al works fine. But when i want to put with the rectangle tool a button over the whole banner and put in the action tab the code:
Symbol16.onRelease() {
...
10
votes
2answers
3k 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;
...
-2
votes
3answers
107 views
Will a pointless semicolon have any performance impact?
Sometimes, I notice I add an additional ; after a statement.
Example:
Console.WriteLine("meow");;
Will that effect the performance in my app? Specifically, I am wondering about C#.
0
votes
1answer
119 views
OpenCSV Get Value from last row and specific column
I am trying to get the values from the second last row and third column in a semicolon separated file. I can't seat to get the values from the second last row and the third column.
I have searched ...
5
votes
2answers
116 views
Why need to use semicolon before defining a function? [duplicate]
I've seen some strange ; at the beginning of a function in some jQuery plugins source code like this:
;(function ($) {.....
Can someone explain why they need to use ; in this case?
0
votes
1answer
62 views
Semicolon inside function parentheses?
I was browsing through Psycle source code, and this line caught my attention:
bool user_choose_dialog(HWnd const window_handle,
format const * const source_format = 0,
...
0
votes
2answers
64 views
semi-colons in PHP form submissions
Two related questions that should be easy, though my searching has come up empty.
1) I have a from in PHP. If a field has a semi-colon in it, and I do a dump of $_POST in the action page, the field ...
0
votes
4answers
80 views
Why do class functions in php not need semicolons at the end? [closed]
For example...
public function processRowSet($rowSet, $singleRow = false){
$resultArray = array();
while($row = mysql_fetch_assoc($rowSet)){
array_push($resultArray, $row);
};
...
3
votes
1answer
105 views
Missing ';' before 'template<'
So I'm getting a strange error when I'm compiling my program:
Error 1 error C2143: syntax error : missing ';' before ''template<''
I'm doing everything pretty standard; nothing out of the ...
-1
votes
2answers
63 views
Is it possible to make a macro that replaces newlines with semicolons
Say someone was really lazy and didn't want to have to keep remembering to type semi-colons at the end of a line, is there a way to get past that with macros?
I'm not saying it's something I want to ...
-4
votes
1answer
80 views
query for jquery — missing semi colon error [closed]
Hi I am unable to solve the problem of a missing semi colon in the following code on the 2nd last line (beginning with $(#grid).css...):
http://jsfiddle.net/yhb9A/34/
$(document).ready(function () {
...
0
votes
0answers
48 views
multiple types in one declaration
I've seen people ask about this before, and it sounds like in general it comes down to a missing semicolon. I can't for the life of me find the potential culprit (the error is assigned to the line of ...
21
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?
12
votes
4answers
256 views
Use of commas versus semicolons in JavaScript?
Given the following code
var fn = function () {
var x = 'x',
y = 'y';
this.a = 'a',
this.b = 'b',
this.c = 'c';
this.d = 'd',
this.e = 'e';
}
You can see that there ...
0
votes
1answer
26 views
tr and parentheses
i hava huge file with SQL queries on each line.
But that file has some bugs, and re-creating it would take too much time.
I have some lines with missing semicolon.
I see that these lines always end ...
5
votes
3answers
1k views
Why do some languages need semicolons?
I understand that semicolons indicate the end of a line in languages like Java, but why? I get asked this a lot by other people, and I can't really think of a good way to explain how it works better ...
44
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 ...
31
votes
2answers
609 views
Semicolon on my function parameters in C
matrix_* matrix_insert_values(int n; double a[][n], int m, int n)
{
matrix_* x = matrix_new(m, n);
for (int i = 0; i < m; i++)
for (int j = 0; j < n; j++)
...
1
vote
1answer
67 views
how to separate each line of function body with semi coloumn in R
in R i have a function "getHbasedPortfolio". The body of the function is as follows:
body("getHbasedPortfolio")
{
className <- name
pf = list(name = name,
get = function(x) ...
5
votes
4answers
537 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 ...
3
votes
1answer
95 views
Automatic Semicolon Insertion in JavaScript without parsing
I'm writing a JavaScript preprocessor which automatically inserts semicolons in places where it's necessary. Don't ask why.
Now I know that the general way to tackle this problem is to write a ...
5
votes
2answers
108 views
JavaScript semicolon at the beginning of code: still a good practice?
I have been taught that it is a good practice to always insert a semicolon at the beginning of JavaScript code, as following:
;(function(){
})();
However, many popular JavaScript ...
0
votes
5answers
301 views
Java - String.split will not separate by semicolon
My code worked perfectly before when separating by comma, and now it won't work for semicolon!
By comma:
public void loadXXXData() {
InputStream is = ...
1
vote
1answer
52 views
Perl5Matcher.matches(input, pattern) is returning true for input containing semicolon even when semicolon is not in pattern
I have a string MyString = "AP;"; or any other number of strings containing ;
When I attempt to validate that MyString matches a pattern
eg. MyPattern = "^[a-zA-Z0-9 ()+-_.]*$";
Which I believe ...
1
vote
5answers
337 views
Is it always safe to insert a linebreak after a semicolon in javascript?
I am having an issue checking in a minified javascript file into Clearcase. The file in question is a single line, well over the 8000 character limit that Clearcase imposes.
I know that javascript ...
1
vote
3answers
60 views
Error on my semicolon seems unfixable [closed]
Here's all my code:
@Override
public void onEnable()
{
getLogger().info("Plugin Enabled!");
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
{
...
0
votes
3answers
437 views
Java Array of Strings in a Class - Curly brace error in Eclipse
I have searched SO for this, and have seen some similar questions, but not this question specifically (that I could find, anyway).
I am receiveing a curly-brace / semicolon error on the lines before ...
0
votes
1answer
490 views
When are Scala Semicolons required
I am trapped at work with a locked down pc. But I am trying to practice my scala. I am using Ideone.com since I can't even install scalac...
Anyway this is not compiling:
class DPt(var name: String, ...
2
votes
8answers
130 views
Why I am not getting any Warning or Error when writing “;”?
Sorry if the question is bit weird but want to get some explanation.
I have written this three lines below inside my Java code:
ArrayList<String> QuestionID = new ArrayList<String>();
;
...
6
votes
2answers
244 views
C++ learning header files. What's up with this semicolon? [closed]
So I'm learning to make header files. Here's my code (three separate files)
//Main.cpp
#include <iostream>
#include "functions.h"
;
using namespace std;
int main()
{
cout << ...
1
vote
3answers
74 views
Explicit mention intended Semicolon
Problem
I used a empty statement and am aware of that. So how can I disable the compiler warning?
warning C4390: ';' : empty controlled statement found; is this the intent?
There might be a way ...
0
votes
0answers
143 views
Phpmyadmin import with a csv file containing commas, semicolons and tab delimiters
I am trying to use phpmyadmin import to get each piece of data and put it into a column it contains comma, semicolon and tab delimiters however I can only split the data by semicolons or commas.
...
1
vote
2answers
239 views
Inserting Semi colon in between data in a cell in excel
I have data in column A, C, E and G, I want column I to hold all of the data from these separated by semi colons, I have searched the web but all I find is how to replace line breaks with semi colons ...
13
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):
...
1
vote
2answers
310 views
Syntax error: expecting semicolon before leftbracket
I have only been using ActionScript 3 for three days, so I'm a major newb, but I've used several other languages for most of my life.
I have the following code at frame one of the top layer:
var ...
0
votes
1answer
116 views
PHP/MySQL - Random semicolon output
I have this script to outpout everything from table called Articles.
If I load this script there are random semicolons coming at front of my table like this ; ;
This is my code:
...
2
votes
3answers
162 views
Automatic semicolon insertion & return statements
as you might know, ECMAscript trys to be smart and will automatically insert semicolons if you didn't write those explicitly. Simple example
function foo() {
var bar = 5
return bar
}
will ...
0
votes
2answers
284 views
tmux bind semicolon
Is there some way I can bind ; (\059) to a command in tmux?
By default, it is bound to last-pane; however, I would like to rebind it to select-pane -R.
I have tried putting the following in my ...





