The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
56 views

Open file in bash script

I've got a bash script accepting several files as input which are mixed with various script's options, for example: bristat -p log1.log -m lo2.log log3.log -u I created an array where i save ...
0
votes
3answers
68 views

Regex substituting opening parenthesis

As part of a parsing script I'm trying to convert strings like this: <a href="http://www.web.com/%20Special%20event%202013%20%282%29.pdf"> into <a ...
0
votes
1answer
36 views

How to enable parenthesis completion in Visual Studio 2012 for C#?

Title says it all. I've been searching through: TOOLS -> Options... -> Text Editor -> C# -> Formatting and can't find anything like "Complete parenthesis yes/no". Textmate has paren ...
-3
votes
1answer
26 views

What is the name of the part of the parenthesis (()) of a for-loop that terminates the loop

What is the name of the part of the parenthesis (()) of a for-loop that terminates the loop? The parenthesis is the () but i dont get the rest of the question so if I had a loop like enter code here ...
3
votes
5answers
111 views

loop through nested parenthesis content

i find quite a lot of similar questions but mostly regarding regexp and not exactly what i want to do. Given a string = "(content4(content3(content2(content1...)))) I would like to get the leaf ...
-1
votes
1answer
40 views

sqlalchemy how to using AND in OR operation?

i need to do this query: SELECT * FROM tbl_member WHERE (member_type==1 AND member_status==1) OR (member_type==2 and member_status==2) i've tried: q=session.query(tbl_member) \ ...
2
votes
3answers
67 views

Cant turn off Clojure parenthesis autocomplete in Eclipse

Im working on a Clojure project using Eclipse, and for some reason it decided that all free will concerning parenthesis should be removed, and now when I type '(' it auto-completes it to '()'. The ...
1
vote
1answer
60 views

Multiplying with parenthesis result using overloaded * operator in C++

So I've been writing a small math library in C++ and when dealing with a scalar multiplied by a vector I get some issues when I try to perform this operation Vect V2; Vect V3; float S; Vect V1 = V2 ...
1
vote
1answer
173 views

Perl, Assign to variable from regex match

I am relatively new to perl and there is an example snippet of code in check_ilo2_health.pl in which there is a piece of syntax that I do not understand how or why it works. The code snippet is ...
1
vote
1answer
60 views

Using parenthesis causes decimal errors on Python and Java

I was recently debugging a program that consistently returned errors just a few decimal points off. It turns out the error was on the very line I believed that I didn't need to check: 999999 * (.18 / ...
3
votes
1answer
116 views

adding parenthesis to a constructor call causes duplicate parameter error in xlc C++ compiler

We are creating a domain specific language that generates C++ code that must compile under gcc and also IBM xlc (version 10.1 for AIX) compilers. One specific code snippet generated C++ code that ...
-1
votes
1answer
64 views

Content Inside Parenthesis Regular Expression Ruby

I'm trying to take out the the content inside the parenthesis. For example, if the string is "(blah blah) This is stack(over)flow", I want to just take out "(blah blah)" but leave "(over)" alone. I'm ...
0
votes
1answer
94 views

What's causing this Missing Right Parenthesis Oracle Error After Adding Tablespace References?

Sorry for adding this to the "missing right parenthesis" pool on the site but I poured through those and these were the only two that seemed similar to my code and neither helped me fix my issue ...
3
votes
1answer
195 views

Add priority to parenthesis in calculator grammar

I'm writing a simple calculator in SML , and my code need to support 3 kinds of parentheses : ( ) [ ] { } Where inside { } , can appear { } , [ ] , ( ) expressions , Inside [ ] , can appear ...
1
vote
1answer
185 views

) was unexpected at this time

I am using the following code to check for files before renaming, and if not, check for another file to display a message. SET offline=1 IF EXIST %webroot%\%sitename%\app_offline.htm.scheduled ( ...
1
vote
3answers
726 views

List of all unicode's open/close brackets?

What is a list of every unicode bracket-like characters (including, for example: {}[]()<>)? What is a good way to search for unicode characters?
6
votes
1answer
290 views

Escaping parentheses within parentheses for batch file

This is what I am trying to do: ( @echo This is some code that is @echo Important to echo exactly as-is @echo Even if I use parenthesis @echo for something (like this) )|clip So having that copied ...
3
votes
2answers
52 views

function wrapped in parens

Why does this return a syntax error: function(foo){console.log(foo)} I'd expect this to return the value of the function, hence return itself, and not assign it to anything, but i get a ...
1
vote
1answer
63 views

Parse data between a function in javascript using regex

I have a string like the following rotate(32) translate(0,-284.35468),translate(8545,84) matrix(d,f,g,s,g) translate(-58,88) Each function can be separated by a comma or a blank space. I want ...
2
votes
1answer
82 views

What is the community's intention of putting a couple of parenthesis around an anonymous function declaration in JavaScript?

What is the semantic difference between these two snippets of code? Example 1 var x = (function () {} ()); Example 2 var x = (function () {} )(); The difference in writing is where we put our ...
2
votes
3answers
61 views

why are objects wrapped in parenthesis in JS?

Given the following example: var foo = { root: ({ key1: "Value1", key2: "Value2", key3: "Value3" }) }; What is the difference compared to ...
2
votes
3answers
333 views

Parenthesis in variables inside IF blocks

In one of my scripts, I need to use variables that contain parenthesis inside IF statements, but either the string is missing a closing parenthesis or the script exits prematurely with * was ...
2
votes
2answers
221 views

regex for parse sentences with skipping the parenthesis contents

I need to parse a sentence, such as it skips the words inside the parenthesis. input sentence:- "This is the work (my real job) which is great." Output required:- This is the work (my real ...
1
vote
2answers
114 views

Can't get grouping to work with sed

This works as expected: INPUT FILE src.txt: ffmpeg -i uno.3gp ffmpeg -i dos.3gp ffmpeg -i tres.3gp COMMAND: sed 's/-i .*\./XXX/' <src.txt RESULT AS EXPECTED: ffmpeg XXX3gp ffmpeg XXX3gp ...
5
votes
4answers
140 views

Is there a macro that expands to return without parentheses?

I want to use a macro like this #define Return(x) {call_my_function(); return (x);} is there any way to use or declare a macro without parentheses, so I can use it like a real return call and ...
2
votes
3answers
413 views

How I can do java annotation like @name(“Luke”) with no attribute inside parenthesis?

How I can do custom java annotation with no attribute name inside parentheses? I don't want this: @annotation_name(att=valor). I just want like in Servlets, i.e: @WebServlet("/main")
0
votes
3answers
164 views

How to print out specific values from a list

Hey this might be a simple question, but i have been stumped on it for awhile =/ I have a string A: A = ('A:0.1,B:0.2,(C:0.3,D:0.4)E:0.5') And a corresponding list B, that displays the exact ...
-4
votes
1answer
562 views

unbalanced parenthesis error using re.search python

I have a list that I want to loop through (for trimtemp in trim) and see if it has any matches in a given string (modeltrim). The code runs fine most of the time however, every now and then it gives ...
-1
votes
5answers
474 views

Regular expression to remove multiple parenthesis

I'm in need of a regular expression that can remove unnecessary/extra parenthesis in a string if found. Example: Bob Barker LIVE! (((Don't Miss out!))) Wanted Result: Bob Barker LIVE! (Don't Miss ...
5
votes
3answers
126 views

Php confused when adding and concatenating

Consider this php code: <?php $row = array('a'=>1,'b'=>2,'c'=>3); echo "sum: ".$row['a']+$row['b']+$row['c']; echo "\n"; echo "sum: ".($row['a']+$row['b']+$row['c']); echo "\n"; ?> ...
0
votes
1answer
104 views

Doctrine - strange moved parenthesis in the query

I have tested and done quite some research online, but still no luck. Did anyone ever encounter this problem ? Say, I have a doctrine query set up like: $q = Doctrine_Query::create() ...
1
vote
0answers
84 views

Eclipse StatET, matching brackets

Does anyone know how I can get Eclipse (w/ StatET) to highlight matching brackets within strings? For example I have the following in the editor: "this is a a string (asdf)" I would like the ...
2
votes
3answers
1k 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
192 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
713 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
326 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 ...
2
votes
4answers
693 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
230 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
1answer
138 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 ...
2
votes
3answers
902 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
2answers
472 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 ...
4
votes
2answers
242 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 ...
3
votes
4answers
4k 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 ...
7
votes
4answers
1k 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 ...
5
votes
3answers
2k 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" ...
6
votes
3answers
7k 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 ...
0
votes
3answers
251 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. ...
1
vote
3answers
633 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
397 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 ...
3
votes
2answers
450 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 ...

1 2