The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
22 views

Compiling inputdlg Matlab

I'm currently trying to compile a Matlab function into an exe file and I'm having trouble to get rid on the Inputdlg part. The original Matlab code is : prompt={'Charge équivalente TNT :','X foyer ...
1
vote
1answer
25 views

Curly brackets when using clipboard_append

So I was writing a program that converts MM to inches, RA surface finishes to MM, and can also convert tolerances for dimensions from MM to inches. This is actually my first project I took on in ...
-2
votes
2answers
67 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 ...
4
votes
2answers
99 views

rules (?) of parens/brackets usage in perl

Did some search but couldn't find anything useful. I was wondering if there is a summary table of sort for beginners to learn about the "rules" of using parens/brackets, specifically, the differences ...
-1
votes
3answers
64 views

How do I know when to use {} [closed]

I am new to learning JavaScript. I am starting to get the hang of it but I am reviewing lines of code that I got from a book I am learning from ("Head First") and I am having a bit of a hard time ...
0
votes
1answer
99 views

Powershell curly braces and variables not being parsed

I'm trying to bulk update a large amount of distribution lists using powershell, I've written this so far: foreach ($Item in @(Import-Csv -Path "ranks.csv")) { $Rank = $Item.Rank ...
0
votes
4answers
91 views

for next loop brackets in javascript

I recently found this bit of JavaScript code (which is fine functionally) but I noticed that they're were no brackets around the for next loop. I always thought you must include them for the code to ...
0
votes
1answer
109 views

Use curly brackets to structure code in PHP

Is it possible to enclose code fragments in PHP within brackets (without using the fragment as a funktion)? Would the following code behave the same way as it would without the curly brackets? Or ...
0
votes
3answers
288 views

Java Array of Strings in a Class - Curly brace error in Eclipse

I have searched SO for this, and have seen some similar questions, but not this question specifically (that I could find, anyway). I am receiveing a curly-brace / semicolon error on the lines before ...
0
votes
3answers
174 views

PHP include files - opening and closing brackets/braces { } for if and while loop

Sperate PHP include files - opening and closing brackets/braces { } for if's and while loop nd closing curly brackets/braces in between files Hi all , I am working with PHP includes i.e: ...
1
vote
3answers
113 views

Sperate PHP include files - opening and closing brackets/braces { } for if's and while loop nd closing curly brackets/braces in between files

I am working with PHP includes i.e: include_once("somephpfile.php"); And a CSS/HTML designer that is very problematic. I am trying to keep all PHP away from the designer, as they become very ...
1
vote
3answers
718 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?
0
votes
3answers
95 views

Regex matching between curly brackets yields too much results

I have a bunch of text, for example: foofoofooabcdefhjkldh389dn{pdf}images/1.pdf,100%,500{/pdf}hfnkjt8499duidjglkj I'd like to extract the following: {pdf}images/1.pdf,100%,500{/pdf} So here's ...
0
votes
6answers
554 views

Which is Better Performance Wise - if(condition){result} VS if(condition) result; [closed]

I know the performence difference will be very slight in both scenarios, but I was wondering which is a more practical, performance-improving version to write conditions in PHP. if(condition){ ...
9
votes
2answers
301 views

Is there an auto-close curly brackets plugin for the Geany IDE?

Geany is the closest thing I can find to the perfect web development IDE. However, I can't find a way to automatically close curly brackets ({). For example, typing: function test() { ..and ...
6
votes
2answers
147 views

Perl syntax with consecutive operators and brakcets

I'm just trying to learn a bit of Perl and have come across this: foreach $element (@{$records}) { do something; } To my newbie eyes, this reads: "for each element in an array named ...
1
vote
1answer
611 views

Brace styles in C# in VS2012

I'd like to configure the auto formatting brace styles to my preference. I've looked through all the option and can't quite get it how I like it. Here is a sample of my preferred format: if ...
7
votes
3answers
248 views

Is it true that I should use K&R styling when writing javascript? [closed]

I didn't realise it until recently, but I use the Allman style when writing javascript code. According to http://encosia.com/in-javascript-curly-brace-placement-matters-an-example/ I should be using ...
235
votes
19answers
12k views

What's the purpose of using { … } for a single line?

I'm reading some lecture notes of my C++ lecturer and he wrote the following: Use Indentation // OK Never rely on operator precedence - Always use parentheses // OK Always use a { } block ...
1
vote
4answers
157 views

Are there any drawbacks to using cascading “else if” statements?

This question pertains to pretty much all C-like "curly bracket" programming languages. I'm talking about using the following: if(condition) meh(); else if(condition1) bleh(); else ...
0
votes
2answers
372 views

Which is the use of curly braces in Haskell?

The code below getSpareBuffer :: Handle__ -> IO (BufferMode, CharBuffer) getSpareBuffer Handle__{haCharBuffer=ref, haBuffers=spare_ref, haBufferMode=mode} ...
-2
votes
1answer
52 views

Where do I put the filename and path in this code? [closed]

I have been experimenting with the media player, and I want to know where to put the file name and path in this code. I got it from Code: public void audioPlayer(String path, String fileName){ ...
0
votes
2answers
82 views

Getting a syntax error that I can't fix

I am using the following code to try and catch all the errors that can occur for an audioPlayer. However, the very last brace creates a syntax error. Can anyone tell me why? It says: "Syntax Error, ...
5
votes
1answer
737 views

Wrapping multiple statements in braces

Is there a keyboard shortcut in Visual Studio 2010 (I'm using ReSharper 6.1 also) that will allow me to surround a selected block of text with curly braces? I tried "Surround With..." (Ctrl+K, ...
0
votes
1answer
217 views

How to tell Eclipse to stop moving my curly brace backwards

I recently installed Eclipse (Helios Release) PDT and am trying to set the preferences to my project's style of code formatting. I have gone into... Eclipse PDT > Window > Preferences > PHP > Editor ...
0
votes
2answers
763 views

Smarty regex_replace matching expression with curly brackets [SOLVED]

Can anyone please help me with this...I'm not very good with regular expressions and I'm banging my head since days! In Smarty I have this array o values included in curly brackets captured in ...
2
votes
3answers
606 views

What does the curly-brace syntax mean in bash?

I was reviewing some of my old code and came across this syntax, but I forget exactly what it means :-) extractDir="${downloadFileName%.*}-tmp" The only information I found searching refers to a ...
7
votes
6answers
3k views

PHP - If/else, for, foreach, while - without curly braces?

Something that really would like to know but never found out are shortcuts in PHP. I am currently coding a function with a foreach loop with just a single statement inside. I tried to omit the curly ...
1
vote
1answer
211 views

Using Mustache with joomla

I am trying to use Mustache.php with Joomla. What I would like it to do is check the whole page for the curly brackets and then change {{name}} for PERSONS NAME etc etc. I have tried playing around ...
2
votes
2answers
131 views

Using curly braces in an email / article to insert the customers name

I have looked and looked for an example on this, but the only ones I have found are echoing the result of the str replace like this : $malestr = str_replace("{name}", "$name", $rawstring); echo ...
1
vote
1answer
163 views

Insert into form curly brackets alias with Jquery / Javascript

I am not even sure if this is even possible or how easy it is, but what I am trying to work out is how to, if it is possible, to use jquery or javascript to insert an alias for a form field / curly ...
4
votes
3answers
531 views

How to navigate to a closing bracket with ReSharper?

Say you have a large amount of C# code in an if statement. If you place your carat next to the opening bracket, is there a hotkey or something in ReSharper that will automatically take you to the ...
1
vote
1answer
263 views

Vim: regex in search function not working as expected to find left curly brackets

I am trying to compose a Vim script function to help format where the left braces are located at in C like functions blocks. function! FixLeftBraces() "Set the cursor to the top of the file ...
0
votes
1answer
594 views

How can I print a string using .format(), and print literal curly brackets around my replaced string [duplicate]

Possible Duplicate: How can I print a literal “{}” characters in python string and also use .format on it? Basically, I want to use .format(), like this: my_string = ...
1
vote
2answers
235 views

Why am I getting ugly curly brackets around my text in the label widget? - Tkinter

I'm getting curly brackets around the text in my label widget. The output is {Total tries: 0} instead of Total tries: 0. Here is a short version of my code: class Cell: def check(self): ...
1
vote
2answers
317 views

Javascript, adding things in curly bracket and definition

i'm in the process of modifying this excellent javascript library for autocomplete-ing html input see here... as i need to pass some extraparameters to the Ajax call. Actually i'm looking for ...
0
votes
2answers
326 views

Compile error with inner class (bracket expected)

I have an inner listener class in my program. The compiler signals an error at the first line below and says '{' expected. I can't figure out what's wrong. I revised all my brackets and there's no ...
4
votes
4answers
120 views

Is this html code using php inside it without the <?php ?> signs?

<a href="?page={$smarty.section.page.index}&{$per_pages_vars}">{$smarty.section.page.index}</a> {/if} {/section} {if $pagesArray.is_next_page eq 'Y'} <span class="resultsnext"> ...
2
votes
0answers
123 views

How to tell doxygen that the opening curly bracket for a function does not start on the next line?

By default, doxygen seems to assume that the opening curly bracket for functions is placed in the second line of a function definition. This becomes apparent when INLINE_SOURCES is set to YES. For a ...
3
votes
4answers
259 views

When are curley braces required around single statements?

In my answer here: C# Lock syntax - 2 questions, LukeH pointed out that try...catch...(finally) statements require curly braces. I found the answers as to why, found here ( Why Do try ... catch ...
0
votes
2answers
290 views

Curly Brackets Converted to Hexidecimal when using URL.Document or window.location.href

Would like to take document.URL, find the string with curly brackets, remove the curly brackets, and show just the string that was inside the curly brackets. However, it seems that document.URL or ...
4
votes
3answers
604 views

1TBS for long conditional expressions

Important note: this question is not about the superiority of a bracing style above another. I am currently switching styles in order to evaluate for myself which one I think works best in my ...
0
votes
4answers
552 views

“parse error at end of input”, but I'm sure my brackets are correct. (in C)

I'm pretty sure my brackets are matched up correctly, but I'm getting the error "parse error at end of input" No matter how many or few brackets I attach to the end of this program. Since all of the ...
3
votes
1answer
460 views

How to access php curly brace object property [duplicate]

Possible Duplicate: How to access object properties with names like integers? print_r($myObj) gives the following result: stdClass Object ( [4021450] => stdClass Object ( ...
1
vote
1answer
528 views

I am unable to use [brackets] and {braces} in Gedit on Mac OS X (snow leopard)

I have searched everywhere. The bug tracking system on http://projects.gnome.org/gedit/ is broken. Don't know how to use IRC(even if I did, irc.gnome.org is a very weird site of which i understand ...
0
votes
2answers
1k views

Opening Curly Bracket (Brace) position on code [closed]

I'm used to write code (in C, Perl, or any language with curly brackets) like: Loops: for (int i = 0; i < 10; i++) { // <----- ... } Conditions: if (i == 10) { // <----- ... } ...