Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
8answers
3k views

What is the use of the square brackets [] in sql statements?

I've noticed that Visual Studio 2008 is placing square brackets around column names in sql. Do the brackets offer any advantage? When I hand code T-SQL I've never bothered with them. Example: Visual ...
8
votes
5answers
177 views

How does the ~[] construction work in JavaScript?

I've come across a working JavaScript code that I can't explain. For example: +[]===0 -[]===0 ~[]===-1 ~-~[]===-2 ~-~-~-~-~[]===-5 ~-~-~-~-~[]+~[]===-6 ~+~[]===0 ~+~+~[]===-1 ~+~+~+~[]===0 Can you ...
8
votes
1answer
663 views

Can I use Perl regular expressions to match balanced text?

I would like to match text enclosed in brackets etc in Perl. How can I do that? This is a question from the official perlfaq. We're importing the perlfaq to Stack Overflow.
8
votes
1answer
130 views

What is this JavaScript construct: “ = [y for each …]”

myColl.y = [y for each (y in myColl.y) if (y != myThing.getY())]; I understand what this is doing, returning all the 'y' items that are not the current one... But, what is the concept called here ...
7
votes
2answers
142 views

Wolfram Mathematica auto close the brackets

Not a long ago I started to learn Mathematica - i.e. I'm novice. Usually I code in text editors with auto close of brackets like Gedit,Notepad++,Qt IDE etc. It's very convenient when you are not ...
7
votes
6answers
3k views

PHP conditionals, brackets needed?

I was just browsing a forum and someone asked about a php file they had found on the web. It has several spots like this in the code: if ($REMOTE_ADDR == "") $ip = "no ip"; else $ip = ...
6
votes
1answer
379 views

Visual studio 2010 + resharper bracket indentation problem

I'm using VS 2010 + resharper, and i'm tired reformatting bracket indentation in code as i want it. As example if i have code like: operators.Keys .ToList() .ForEach(k => filters ...
5
votes
7answers
10k views

What's the regular expression that match a square bracket?

I have been playing with JFlex and at this moment I want to get a regex that match a square bracket "[", but I don't find it. I think I tried all posivilities but the right. Some help?
4
votes
7answers
196 views

Is it ok if I omit curly braces in Java?

I've searched for this, but couldn't find an answer and for whatever reason I was too ashamed to ask professor, due to that feeling when hundreds of people stare at you... Anyhow, my question is ...
4
votes
4answers
277 views

Python: What does the use of [] mean here?

What is the difference in these two statements in python? var = foo.bar and var = [foo.bar] I think it is making var into a list containing foo.bar but I am unsure. Also if this is the behavior ...
4
votes
5answers
2k views

How to make Visual Studio to automatically include curly brackets in C# code?

After namespace, class, struct, enum, for, foreach, while, switch, do, using, unchecked and at the beginning of methods, shouldn't Visual Studio automatically include curly brackets? How to activate ...
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 ...
4
votes
5answers
575 views

'Bracket initializing'. (C++)

I'm learning C++ at the moment, C++ Primer plus. But I just felt like checking out the cplusplus website and skip a little forward to file handling. I pretty much know the basics of file handling ...
4
votes
7answers
2k views

Python parsing bracketed blocks

What would be the best way in python to parse out chunks of text contained in matching brackets? "{ { a } { b } { { { c } } } }" should initially return: [ "{ a } { b } { { { c } } }" ] putting ...
3
votes
3answers
118 views

What is alone { code } in Java for?

I recently read some code that uses a special syntax regarding {}, I've asked a more experienced Java developer, but he also can't answer. public void doSomething() { someWorks(); { ...
3
votes
2answers
720 views

Xcode 4 method braces “{” convention

I switched over to Xcode 4 while it was in beta, and I have mostly been editing existing code so haven't really considered this much until now... Apple's file templates seem to have switched ...
3
votes
1answer
183 views

round brackets in xaml syntax

when I'm using ColorAnimation to change Background of control i'm using following syntax: <ColorAnimation Duration="0:0:0.5" ...
3
votes
8answers
409 views

operator[]= overload?

Okay, I'm trying to make a quick little class to work as a sort of hash table. If I can get it to work then I should be able to do this: StringHash* hash = new StringHash; hash["test"] = "This ...
3
votes
1answer
187 views

Delphi: Closing Brackets Optional?

I have noticed quite a few times that syntax errors like Exit(push(ASBDD(asPixmap, _ScriptSavePixmap(Script, PMRGBAdjust(_ScriptGetPixmap(Script, Args[0].Index), adjparams)))); actually compiles. ...
3
votes
6answers
359 views

Python regex confused by brackets ([])?

Is python confused, or is the programmer? I've got a lot of lines of this: some_dict[0x2a] = blah some_dict[0xab] = blah, blah What I'd like to do is to convert the hex codes into all uppercase to ...
3
votes
3answers
150 views

How do I match a quoted string followed by a string in curly brackets?

I need a regex expression for matching a string in quotes and then a white space then a round bracket then a curly bracket. For example this is the text I want to match in Java: "'Allo 'Allo!" ...
3
votes
4answers
405 views

Remove all nested blocks, whilst leaving non-nested blocks alone via python

Source: [This] is some text with [some [blocks that are nested [in a [variety] of ways]]] Resultant text: [This] is some text with I don't think you can do a regex for this, from looking at the ...
3
votes
2answers
2k views

how to override [] brackets in ruby?

I am writing an Ajax request form with Ruby on Rails using a collection_select tag that looks like this: <%= collection_select("Jobs", "clearance", @allClearances, "clearance", "clearance", ...
3
votes
3answers
1k views

How to set curly braces'/parentheses'/square brackets'/arithmetic operators' syntax highlight color in VIM?

How do I highlight operators/parentheses/brackets/etc. in VIM? I'm not interested in coloring matching or unmatching parentheses/brackets. I've tried ":hi cBracket/whatnot guifg=something" and ":hi ...
3
votes
3answers
5k views

HTML to create tournament final four bracket?

Is there a website I can create an HTML final four bracket? Or is there just HTML out there that will create it automatically and I can just fill in the specifics?
2
votes
1answer
71 views

Loading a JSON file containing JSON within brackets

I'm trying to load a JSON file on a website using C# and JSON.Net However, I'm running into a problem when it runs because all the JSON is within []. Here's the JSON: ...
2
votes
1answer
40 views

Stripping outer brackets from a string

I am having some trouble writing a regex expression that will strip outer brackets from a string (I want to ensure any brackets within single/double quotes are preserved): ((0)) becomes 0 (0) ...
2
votes
3answers
156 views

Tournament bracket placement algorithm

Given a list of opponent seeds (for example seeds 1 to 16), I'm trying to write an algorithm that will result in the top seed playing the lowest seed in that round, the 2nd seed playing the 2nd-lowest ...
2
votes
1answer
53 views

where to put brackets in awk

Hello every one I want to ask that I am very very confused about the brackets {} in awk like I have written a code { FNR == 3 { print $1 " age is " $2 } } but it gave me error on outer ...
2
votes
1answer
160 views

ANTLR: how to parse a region within matching brackets with a lexer

i want to parse something like this in my lexer: ( begin expression ) where expressions are also surrounded by brackets. it isn't important what is in the expression, i just want to have all what's ...
2
votes
1answer
303 views

Jaxb json missing brackets for one element array

I'm using JAXB/Jersey (1.3) to convert java to json in a REST API. I read a lot about this problem, I tryed this solution, it work a half: @XmlRootElement public class ArrayWrapper { ...
2
votes
1answer
361 views

Recursive Algorithm for Tournament Brackets

I am creating a tournament bracket creation script, and I am getting stuck with tournaments with the number of players Non - Power of 2. For instance, it is currently working great for 2, 4, 8, 16, ...
2
votes
3answers
226 views

Special uses of this syntax in PHP? (Triple 'Angle Brackets')

Given the following code: $myString = <<<script . . . script; Thanks to the answers on the original version of this question, I understand <<< to be heredoc syntax, ...
2
votes
3answers
360 views

Nested if-statements without brackets

following code is given: if (c2-c1==0) if ( c1 != c3 ) {...} How do I interpret this code? The first if-statement comes without {}. Is the code above equal to the ...
2
votes
3answers
182 views

php braces and strings

can anyone explain to me how to use the curly braces { } in php strings? like "this is a {$variable}" "this is a {$user -> getName($variable);} name"
2
votes
3answers
322 views

use brackets in checkbox name when using php and javascript?

i have a form with checkboxes like this: <input type="checkbox" name="type[]" value="1" />Fast Food<br> <input type="checkbox" name="type[]" value="2" />Table ...
2
votes
7answers
459 views

what is [] brackets in .net?

i have seen [] such brackets in c# very very rarely but when i start to learn asp.net i have seen them many times but still i couldn't understand what they does ? They are not part of code as using ...
2
votes
3answers
111 views

How to match parameter names in an expression?

I have a set of expressions representing some formula with some parameters inside. Like: [parameter1] * [parameter2] * [multiplier] And many others like this. I want to use a regular expression so ...
2
votes
4answers
2k views

Regex pattern to return text from within brackets

i am looking for a regex pattern that will return me the contents of the first set of brackets in a string. Eg - text text text text (hello) text (hello2) (hello3) text ..will return "hello" does ...
2
votes
1answer
841 views

Can someone explain this C++ notation?

if (vector1.x > ((float*)&vector1)[j]) Is j simply just an index into the vector? e.g. is C++ able to retrieve these values using array notation even though vector isn't an array? If so I'm ...
1
vote
2answers
64 views

How to catch text inside brackets

I have this little code to capture text between brackets: $string = '[title=my title] http://bit.ly/gANFxi [maps:some cool place]'; preg_match_all('/\[([^\]]*)\]/', $string, $matches); ...
1
vote
4answers
72 views

Why is my python function returning multiple brackets?

I'm somewhat of a noob to python but I'm trying to create a recursive function which works just like the built in range function: def Range (lo, hi): if lo >= hi: return [] else: ...
1
vote
2answers
80 views

True regex for getting content from parentheses in square brackets

I love/hate the regex because of usefulness/hardness.(I don't why but I can't construct pattern :( ) I have some records in my database field like this ...
1
vote
3answers
87 views

Mismatched parentheses: a quick way to find them?

I just rearranged a very large JavaScript file. I now get "Unexpected end of input." Somewhere in those hundred of functions, one has lost (or gained) a bracket. What's the quickest way to find it?
1
vote
1answer
330 views

Using windows REN command to remove a prefix from filenames

I'm trying to come up with a solution for this issue using only windows cmd line if it's possible. I have a series of files that look like the following, [sometexthere233] Tv episode 1 ...
1
vote
2answers
152 views

Find content inside square brackets with PHP and replace (regex?)

I need to convert this: [video=http://www.site.com/video.flv] into this <a href="http://www.mywebsite.com/myVideo.flv" id="player"></a> using PHP - probably regex. A string can contain ...
1
vote
3answers
95 views

What do the parenthesis do in Java: Dollar dollar = (Dollar) object;

While working with Kent Becks Book TDD by Example, I encountered some Java Code I did not understand. public boolean equals(Object object) { Dollar dollar= (Dollar) object; return amount == ...
1
vote
1answer
78 views

RegEx for matching/replacing big ( { and } ) brackets

I need to match / replace these brackets in JavaScript: I need like: element { property: value } to be: element property: value Thanks.
1
vote
1answer
206 views

XCode Identation/Bracket Preferences

I'm trying to adjust XCode 4's preferences to automatically create this indentation style. Might be uncommon, but I like it. VS.Net has settings for this, any ideas on how to achieve the same in ...
1
vote
2answers
134 views

Using brackets () in CSS

I'm working with a payment service that generates a bunch of code in the templates I make. The thing is that they use brackets "()" when naming some of their divs. This causes a problem for me as I ...

1 2 3