0
votes
1answer
45 views
XCode shortcut for wrapping selected text in curly braces “{ }”
Any XCode shortcut for wrapping a text selection in opening & closing brackets - { }, ( ) or [ ]?
Growing tired of removing the "}" that XCode automatically enters after I type "{" in cases …
0
votes
4answers
123 views
[C++] Enum declaration inside a scope that is a parameter of a macro.
Hi,
I am trying to create a macro that takes a scope as a parameter.
I know, it is probably not a good thing etc etc.
I was trying this and got the problem that preprocessor looks for commas and …
2
votes
6answers
212 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 …
1
vote
4answers
184 views
Regex pattern to return text from within brackets..
Hi, 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"
…
1
vote
3answers
186 views
What is the difference between int x=1 and int x(1) in C++? [closed]
Possible Duplicate:
Is there a difference in C++ between copy initialization and assignment initialization?
I am new to C++, I seldom see people using this syntax to declare and initialize a …
0
votes
5answers
152 views
Right way to style brackets? [closed]
Possible Duplicate:
Formatting of if Statements
Does convention state I should style my brackets like this...
if(foo == bar) {
//Do stuff
}
...or is it fine to do them like I do:
if(foo …
0
votes
1answer
35 views
Changing the template code produced by Zend_Tool
This is a silly little thing, but I was just wondering whether there was a way to change the style of the code produced by the Zend_Tool? Specifically, the bracket style?
// from this:
class …
1
vote
6answers
239 views
Summing up two columns the Unix way
# To fix the symptom
How can you sum up the following columns effectively?
Column 1
1
3
3
...
Column 2
2323
343
232
...
This should give me
Expected result
2324
346
235
...
I have the …
0
votes
1answer
218 views
Tournament Brackets algorithm
Hello to everyone.
I need to create an asp.net page that auto generate a brackets tournament tennis style.
Regarding the managing of match in database, it's not a problem.
The problem is the …
1
vote
2answers
165 views
php glob() and brackets: []
Hey there lovely stackoverflow people!
I have got directories which contain brackets in the names.
i.e. "dir_123[test@test.de]"
Within that dirs there are .tif files.
What I do is counting the Tif …
1
vote
2answers
76 views
What are the names of the different Bracing/Indenting styles in C/PHP/Java etc?
In languages that use 'curly braces' for code blocks, and where whitespace isn't a concern (C, Java, PHP) - What are the names for the different bracing/indenting styles?
I remember reading about …
2
votes
2answers
175 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", …
1
vote
6answers
438 views
What’s the regular expression that match a square bracket?
Hi!
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?
0
votes
1answer
44 views
Removing Brackets and Text in Crystal
I am using this following text to delete brackets and text inside the brackets; I need to go threw the entire memo field and it stops after it finds and deletes the first set of brackets and text.
if …
0
votes
2answers
171 views
VB Brackets in Enum?
I'm finding this in some legacy code and just curious what the brackets are for?
Public Enum myEnum
none = 0
abc = 2
def = 4
ghi= 6
[jkl] = 8
mno = 9
End Enum
