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

-2
votes
3answers
103 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
53 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
113 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
57 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
43 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
65 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
93 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
62 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
67 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 ...
12
votes
4answers
250 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
24 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 ...
31
votes
2answers
596 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
63 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) ...
3
votes
1answer
83 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
106 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
234 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
44 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
votes
3answers
119 views

syntax error missing ; before using EVEN if i ADD ; at end, it produces a NEW ERROR [duplicate]

i have searched this problem before posting and checked my simple code many times, i have checked the semicolon in the forward declarations in the .H file but still does not work Could anyone help me? ...
1
vote
3answers
58 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
287 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 ...
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 ...
2
votes
8answers
126 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
222 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
70 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
140 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
194 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 ...
1
vote
2answers
278 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 ...
2
votes
3answers
147 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
267 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 ...
0
votes
1answer
62 views

REGEX to extract word connected to nearest semicolon?

I'm attempting to extract a series of data values from a text file. The values are in the format: <MODIFIER NAME1 VALUE; MODIFIER NAME2 VALUE;> For the purposes of the current task that I ...
1
vote
1answer
356 views

Delphi: Missing Operator or Semicolon

I am using Indy 10(TIdTcpServer) and I get the following error: [DCC Error] MainForm.pas(88): E2066 Missing operator or semicolon When trying to run this code: procedure TForm1.SendMessage(Data: ...
0
votes
1answer
99 views

JavaScript -Creating derived class

<html><head><script> function Pet(){ // Base Class var owner = "Mrs. Jones"; var gender = undefined; this.setOwner = function(who) ...
0
votes
1answer
83 views

Can Resharper add a semicolon to my javascript function declaration?

Using Visual Studio 2012, Resharper 7.0.1 If I'm editing Javascript, and I type the following (| = cursor position): this.myFunction = function() {| .. Resharper will add the closing brace for ...
1
vote
2answers
378 views

Python: What Does a Semi Colon Do?

I got a function online to help me with my current project and it had semi colons on some of the lines. I was wondering why? Is it to break the function? def containsAny(self, strings=[]): ...
0
votes
4answers
313 views

How to put semicolon separated string into an array?

Well I was just wondering how can I put this semicolon separated string into an array one,two,three; four,five,six; if( i < x { "seven,eight"; } if( x < i ) { nine; } The result I need would ...
0
votes
1answer
152 views

Escape semicolon route playframework 2.0.2

I would like to do a redirect function with playframework, so far I have this in my routes GET /redirect com.test.redirect(redirecturl: String?="") and my controller : public static ...
6
votes
10answers
403 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 ...
1
vote
1answer
130 views

specifing string with semicolons in UrlScan.ini

I want to block user-agents with UrlScan on IIS 6. However I am not able to specify an user-agent with a semicolon in the string. I think this is a very common scenario, but I can't find any answer on ...
6
votes
1answer
658 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
456 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
215 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> ...
1
vote
3answers
293 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
537 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
434 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, ...
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
534 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 2 3