Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
627 views

Windows x64 & “parenthesis in path” batch file problem

Windows x64 versions contain folders named with parenthesis like "\Program Files (x86)" and this breaks a batch file I use. An example of a problem line: for %%c in (%path%) do if exist "%%c\xyz.exe" ...
4
votes
2answers
109 views

emacs: evaluate blink-matching-open when cursor highlights a parenthesis

Recently while editing lisp code in emacs, I have been frustrated in tracking matching parenthesis. (show-paren-mode t) helps when the matching parenthesis is visable within the buffer along with its ...
4
votes
4answers
446 views

When to use parenthesis in Scala infix notation

When programming in Scala, I do more and more functional stuff. However, when using infix notation it is hard to tell when you need parenthesis and when you don't. For example the following piece of ...
4
votes
2answers
459 views

python assert with and without parenthesis

Here are four simple invocations of assert: >>> assert 1==2 Traceback (most recent call last): File "<stdin>", line 1, in ? AssertionError >>> assert 1==2, "hi" Traceback ...
4
votes
5answers
393 views

Parenthesis operator in C. What is the effect in the following code

I was playing with a macro to enable/disable traces when I came out with the following code when the macro is disabled: int main() { ("Hello world"); } This code is valid and I got the desired ...
4
votes
3answers
2k views

Remove Text Between Parentheses PHP

I'm just wondering how I could remove the text between a set of parentheses and the parentheses themselves in php. Example : ABC (Test1) I would like it to delete (Test1) and only leave ABC Thanks ...
3
votes
2answers
1k views

java escape parenthesis

i have this little class to make a multiple replace on a string: import java.util.HashMap; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; import ...
3
votes
2answers
303 views

C++ function parameter as reference

I have a question. Can anyone tell me why someone would declare parameter r like that ? Whats the difference between Record& r and Record(&r) ? QDataStream& operator>>(QDataStream ...
2
votes
4answers
134 views

Substitute parenthesis for their regular expression

I'm trying to copy a file, >>> originalFile = '/Users/alvinspivey/Documents/workspace/Image_PCA/spectra_text/HIS/jean paul test 1 - Copy (2)/bean-1-aa.txt' >>> copyFile = ...
2
votes
3answers
70 views

Match signs and parenthesis with regex

I've been working in .htaccess to make clean urls. Everything going perfect right now. Iv been able to make clean urls from all alfa-numeric characters with this regex /([a-zA-Z0-9\-]+)/ I want to ...
2
votes
3answers
248 views

Parentheses pairing ({}[]()<>) problem. Python

I want to be able to pair up all parentheses in a string, if they aren't paired then then they get their index number and False. It seems like it is repeating some values over and over, i.e cl == ...
2
votes
1answer
789 views

Lua Closures in implementing a DSL

Lua has a really nice no-parenthesis call syntax that coupled with function closures allow me to write the following local tag = 1 function test(obj) return function(str) return ...
1
vote
1answer
62 views

Groovy DSL using parenthesis?

I have a groovy DSL script like this: entity(attribute1:"one", attribute2:"two") so far so good. I run the script and set the script's delegate to a class where entity's defined, and the class ...
1
vote
2answers
164 views

jQuery selector problem when using a single parenthesis

If I include a single parenthesis in a :contains selector I get an error. e.g. $("a:contains('Speed (mph')") returns the error Syntax error, unrecognized expression: (mph') if I add the ...
1
vote
3answers
330 views

Jquery/Javascript Math: Why are these two 1 line math problems not giving the same answer?

Shouldn't these two math problems give the same answer? Brackets/parenthesis are done first, right? so it should add them all, then divide it by 2, then subtract 10. The second answer below is the one ...
0
votes
1answer
65 views

Vim plugin for 'auto-closed' parenthesis?

I've searched near and far, and not found a plugin that can simply auto-close a set of parenthesis like Textmate. For example: Vim : (*manually close parens* → ) Textmate: (*Auto closes parens*) ...
0
votes
1answer
41 views

How to use parenthesis in dependency in Makefile

Following is my Makefile: .PHONY: all all: /Users/wu/qqaa/homepage\ 1\ 2\ 3/icons\ (a-b) @tar cjvf 1.tar.bz2 --exclude=*~ /Users/wu/qqaa/homepage\ 1\ 2\ 3/icons\ \(a-b\) It didn't work. ...
0
votes
1answer
98 views

PHP and NLP: Nested parenthesis (parser output) to array?

Would like to turn text with nested parenthesis to a nested array. Here is an example output from an NLP parser: (TOP (S (NP (PRP I)) (VP (VBP love) (NP (NP (DT a) (JJ big) (NN bed)) (PP (IN of) (NP ...
0
votes
1answer
97 views

c# regular expression match even-parenthesis in expression

I have the following expressions: KNOWN_TOKEN=((value operator value) operator value) operator OTHER_KNOWN_TOKEN=value operator KNOWN_TOKEN2=(value operator (value operator ...
0
votes
0answers
16 views

add square bracket before each value of a column in matlab

Fore example, I have a column as x=[1 3 6 7]' in Matlab; I would like to come out one column like that x= (1) (3) (6) (7)
0
votes
4answers
230 views

SQL Parentheses use in an OR clause

Was wondering whether anyone would know why do we use the parentheses in this SQL: So, the format goes as follows: Name,location and department of the service of the employees whose name starts with ...
0
votes
3answers
205 views

Regex for matching a word without a ( after it

What regex would check a line for a word that is not followed by a ( character? I tried (\w+)(\?!\() but it doesn't work, and (\w+)[^\(] matches anything by treating the last letter as the [^\(] part. ...
0
votes
1answer
194 views

How to make parenthesis matching work in XEmacs?

I tried using all options in the menu setting Options|Display|Paren Highlighting, but nothing works - no parenthesis match is performed. I also tried setting explicitly (paren-mode 'blink-paren t) in ...
0
votes
1answer
71 views

Do I need to parenthesise yield in Ruby?

In Ruby I can use result << (yield element) and everything works, but if I do result.push(yield element) I get a warning about needing parentheses for future compatibility. I can change ...