The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
34 views

Ruby on Rails - link_to with parentheses

Sorry, but this is a newbie question. There are also a lot of questions on "link_to" already, but none answer my question, which I don't think is really specific to link_to... Creating a link like ...
0
votes
1answer
29 views

Syntax error using a leading parenthesis with insert into

The left paren directly after the "into @gutsTVP" breaks this. The error is on the right paren on line 12. If remove that first set of parens around the first union it runs but it returns the wrong ...
0
votes
1answer
14 views

How to escape parentheses in jsp

I keep getting errors on this line of code: pstmt = conn.prepareStatement( "SELECT * FROM products WHERE category IN" + "(" + "SELECT catid FROM category WHERE ...
1
vote
2answers
27 views

missing parenthesis in jquery event in xhtml page jsf2 application

I tried to use this jquery code to validate my inputs : $(".maqte , .monpu").on("keypress", function(){ if (( (event.which != 46) || ($(this).val().indexOf('.') != -1) ) && ...
-2
votes
2answers
64 views

Does (int i = 0; i < n; i++;) used as a block instead of {int i = 0; i < n; i++;} make any sense at all in C?

Don't know if it's a really dumb thing to ask as I feel it goes against C syntax.But I am not sure.I stumbled across that in a question posted few minutes back.The OP uses something like (int i = 0; i ...
0
votes
1answer
56 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, ...
1
vote
1answer
33 views

What is the point of wrapping JavaScript statements in parentheses?

I have discovered that wrapping different statements in parentheses will return the last one: (34892,47691876297,2000) => 2000 ('test',73,document.createElement('p')) => ...
0
votes
2answers
34 views

javascript get string out of parantheses match regex

I have a full string consisting of something like this [(data1.1)(data1.2)][(data2.1)(data2.1)] Ive read you can do something smart with match function and regex. I want two arrays with the data ...
0
votes
2answers
29 views

Processing parentheses syntax

This might seem like a very simple question, but I am quite confused. I have an if condition with many conditions in it and I cannot figure out the parentheses syntax to be used in this case. Could ...
0
votes
3answers
63 views

Multiple markers at this line - Syntax error on token “)”, ; expected - Syntax error on token “(”, { expected

I'm studying Java (sorry for my poor english, it's not my native language) and when I do a "try-finally" block in Eclipse (JavaSE-1.7) in every "try" that I put, appears this message: Multiple ...
1
vote
1answer
66 views

String equation for simple to complex equations (2)

Yes! Thanks for the help on the last question! For the specified string equation, it worked perfectly! But now I'm having trouble when it comes to two parentheses (whether open or close) are together ...
1
vote
0answers
50 views

Different Behaviour of cindent Between vim 7.0 and vim 7.2

I am using a .vimrc file on one machine that indents my parentheses exactly how I like them using the following lines: set tabstop=3 set shiftwidth=3 set ai set cindent set cino=(s,U1,)0,m1 The ...
0
votes
3answers
61 views

String equation for simple to complex equations

I'm trying to write a program that solves any equation (from simple to complex) in the form of a string by using an Arraylist to break down the equation into seperate parts. It checks for parentheses ...
-1
votes
1answer
37 views

PHP - Unwanted multidimensional array when string has open parentheses [closed]

can some tell me if/why the following returned code (from IMAP FETCH) is treating what appears to be a string value with an open parentheses as a new array? Have a look at: BODY[HEADER.FIELDS ...
0
votes
1answer
51 views

Does standard SQL allow grouping of union expressions?

I glanced at the SQL-92 standard, then at a SQL-92 grammar somebody put together but couldn't understand much. As the SQL Server documentation reminds us, there are cases where the expressions should ...
0
votes
1answer
72 views

Error Creating Table “Missing Right Parenthesis” [duplicate]

I keep being told I am missing a right parenthesis but I'm not seeing it, can anybody point it out? CREATE TABLE Member ( MEMBER_ID int NOT NULL AUTO_INCREMENT , FIRST_NAME varchar(255) NOT NULL , ...
0
votes
3answers
66 views

xpath parentheses selenium

I want to select the second match of my path in a document in selenium IDE: This is the path. I am sure it is valid because Firebug can find it with no problems (//label[text() = "stupid"])[2] ...
6
votes
4answers
204 views

What is the reason to use parenthesis-less subroutine calls in Perl? [closed]

As per perldoc perlsub: The & is optional in modern Perl, as are parentheses if the subroutine has been predeclared. I notice that a lot of times, people use the fact that you can omit ...
0
votes
2answers
63 views

PHP - Script to manipulate/replace function parameters in a PHP file?

I'm writing a script (in PHP) which will go through a PHP file, find all instances of a function, replace the function name with another name, and manipulate the parameters. I'm using ...
-2
votes
1answer
265 views

Parentheses Balancing in scala [closed]

i got a assignment for balancing parentheses using scala ....i wrote this code def balance(chars: List[Char]): Boolean = { def check(sent: List[Char], count: Int): Int = if (sent.isEmpty) ...
1
vote
0answers
22 views

Turn off auto parentheses creation in code::blocks

If I type UTF and then select the function autocomplete comes up with, I get UTF8Encode() What I'd like to end up with is UTF8Encode So I don't end up with UTF8Encode();)
0
votes
1answer
49 views

Bad use of parentheses [closed]

I've been stuck on this for hours: cd /dir1 (cd $HOME); pwd; Why does pwd still say /dir1 and didn't go to my home directory?
0
votes
1answer
100 views

How do I correctly parenthesize nested function calls?

Given these two functions: drex :: (Int,Int) -> [[String]] -> String rcgmove :: String -> (Int,Int) -> (Int,Int) When called like this: drex ((rcgmove b (x,y)) xs) Is an error, ...
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 ...
0
votes
2answers
37 views

REGEX match string include content inside optional delimiter

I am trying to match a string using regex and I am very close to having it working the way I want. Lets say I have a string 5A(test1),4B,3C(test2) The first thing I do is break the string apart on ...
1
vote
3answers
58 views

dig nameserver domain | $variable doesn't work

What am I doing wrong? This works: ns="ns.nameserver.co.uk" d="domain.co.uk" dig @$ns $d A | grep $d However using just a variable after pipe does not (it hangs): ns="ns.nameserver.co.uk" ...
0
votes
1answer
86 views

Java parentheses index matching

I'm writing code to discover the inner left most index of a string (I'm doing string parsing) Does the following code look correct? String t = "VREF_DAC_BAND_GAP_(VALUE|DELTA|TRIM|K(7-0|15-9))" ...
1
vote
4answers
54 views

Javascript ,how to remove values before parentheses and also the parentheses it self

var s = "1236(75)"; var s = s.replace(/\(|\)/g, ''); alert (s); // this gives me 123675 what i actually need is 75 any help will be appreciated! the above code results in 123675, but I need ...
6
votes
3answers
116 views

Why do some Python functions have an extra set of parenthesis around the argument list?

I've seen some Python functions written like this: def get_year((year,prefix,index,suffix)): return year How does that differ (if at all) from other functions without the extra parentheses like ...
0
votes
1answer
64 views

How do I regex match a pattern with optional surrounding parentheses?

I'm looking for a single line regular expression which matches a pattern with optional parentheses. When the parentheses are present they should not be included in the matched pattern. The following ...
2
votes
2answers
131 views

How can I add parentheses as the highest level of precedence in a simple grammar?

I'm trying to add 2 things to my grammar: Unary minus sign, i.e. '-', and Parentheses Here's my grammar so far: <comp> ::= <expr> | <comp> <op0> <expr> <expr> ...
0
votes
2answers
111 views

RegEx javascript, caracter whitespace round bracket

I have the following string in javascript: "Hallo OR, I am OR )" Note the space before the bracket. I want to have this "Hallo OR, I am )" So basically just remove the last OR. I tried every RegEx ...
3
votes
2answers
97 views

JavaScript parentheses (1,2,3,4,5)

I just came across some notation in JavaScript like so: var a = (1,2,3,4,5); This will always return the last value, in the above case 5. I'm aware of using brackets to namespace my JavaScript ...
7
votes
4answers
437 views

C# Regex - How to remove multiple paired parentheses from string

I am trying to figure out how to use C# regular expressions to remove all instances paired parentheses from a string. The parentheses and all text between them should be removed. The parentheses ...
1
vote
4answers
40 views

WPF syntax, what parentheses means

Recently i've read 'Databinding overview' article at MSDN and there is such sample code: <TextBox.ToolTip> <Binding RelativeSource="{RelativeSource Self}" ...
3
votes
4answers
178 views

Missing parentheses with Regex

Am I correct in thinking that Regex can't be used to detect missing parentheses (because there is no way of counting pairs)? Using JavaScript I've about a thousand strings which have been truncated ...
2
votes
1answer
83 views

Does adding parentheses around a throw argument have any effect?

Is there a difference in writing: throw SomeException; and throw(SomeException); I have seen some sources that claim the latter (with parentheses) is not a good option for some reason but alas ...
6
votes
2answers
101 views

array wrapped in parentheses in PHP (array)

This is quite a simple question, but I am finding it hard to find an answer. I have a script that has the following: (array) $item->classes I have seen array() but never (array). What does it ...
0
votes
1answer
67 views

Auto-resizing textarea is bumpy + highlighting parentheses

I am trying to create a simple textarea that will expand according to the text. I also want to syntax highlight parentheses. This all works fairly well but is not perfect. I am doing this with a ...
3
votes
1answer
87 views

Highlight parentheses inside input box

I am trying to highlight parentheses depending on their level and if they are matched or not. So first level gets the following class paren_1, second gets paren_2 and so on. I want to highlight the ...
1
vote
1answer
135 views

Pig removing Parenteses when storing output

I'm new in programming Pig and currently I'm trying to implement my hadoop jobs with pig. So far my Pig programs work. I've got some output files stored as *.txt with semicolon as delimiter. My ...
3
votes
1answer
88 views

Pretty Printing AST with Minimal Parentheses

I'm implementing a pretty-printer for a JavaScript AST and I wanted to ask if someone is aware of a "proper" algorithm to automatically parenthesize expressions with minimal parentheses based on ...
164
votes
3answers
5k views

What do the parentheses around a function name mean?

In one of my project source files, I found this C function definition: int (foo) (int *bar) { return foo (bar); } Note: there is no asterisk next to foo, so it's not a function pointer. Or is ...
1
vote
2answers
102 views

awk nesting curling brackets

I have the following awk script where I seem to need to next curly brackets. But this is not allowed in awk. How can I fix this issue in my script here? The problem is in the if(inqueued == 1). ...
1
vote
1answer
55 views

Why are ( ) added when using child.nodeValue.replace() with Prototype JS

I am using the following Prototype JS code to replace text: document.body.select('*:not(script)').each(function(el){ $A(el.childNodes).each(function(child){ if (child.nodeType === 3) { // only ...
1
vote
3answers
335 views

remove extra parenthesis

Question: Remove extra parentheses from the string. e.g. ((a+b))*c => (a+b)*c (a+b)+c => (a+b)+c ((a+b)/(c+d)) => ((a+b)/(c+d)) (a+(((b-c)))*d) ...
10
votes
2answers
110 views

Why are tokens wrapped by parentheses not r-value expressions?

Consider the following code: #include <iostream> struct Foo { Foo() : bar( 0 ) {} int bar; }; int main() { Foo foo; ++(foo.bar); std::cout<< foo.bar << std::endl; ...
0
votes
2answers
111 views

What is purpose of items in function parentheses?

function handleButtonClick(e) { var textInput = document.getElementById("songTextInput"); var songName = textInput.value; //alert("Adding " + songName); if (songName == "") { alert("Please enter ...
6
votes
1answer
163 views

Trouble with clojure quote-paren `( … ) macro

For practice, I've defined (defmacro quote-paren "body -> `(body)" [& body] `(~@body)) which has the expected transformation (quote-paren body) => `(body). It seems to satisfy a few ...
0
votes
1answer
330 views

enclose contents of cell in brackets, ms excel, format

I would like to format the contents of my MS excel cell so that every number (all the entries are numeric) is enclosed in brackets like so: [-23.293], [23.394] I used custom format and specified ...

1 2 3 4