Brackets is an open source text editor originally created by Adobe.

learn more… | top users | synonyms

1
vote
1answer
21 views

fwrite and hiding symbols [closed]

I have an application that is used to edit .txt files. It opens the selected file, writes to a file and closes the file. Each file that has to be edited has special characters e.g. [, ', =, _, ;.` ...
0
votes
1answer
18 views

Loosing brackets on saving AS3 to XML

I have encountered a problem with saving data from an Adobe Flash AS3 class to a XML file. The problem is that I'm loosing some of the brackets(<>) on saving. The file ends up like this: ...
0
votes
2answers
36 views

Adding bracket when key in a number

Let's say I have a textboxA. When the application runs, textboxA will be shown and user can enter a number. I wanted to format the user input to red color font and enclose with brackets. Example: If ...
0
votes
3answers
38 views

Assign variable within condition if true

I know you can assign a variable in a condition like this: if ($var = $foo) However I don't need to do anything in the condition itself, so I'm often left with empty brackets. Can I simply assign ...
3
votes
0answers
66 views

Regular Expressions (Normal OR Nested Brackets)

So I'm completely new to the overwhelming world of Regex. Basically, I'm using the Gedit API to create a new custom language specification (derived from C#) for syntax-highlighting (for DM from ...
0
votes
3answers
29 views

How do I use sed or tr to remove a counter with brackets

How do I use sed or tr to remove a counter with brackets and a tab Input: [51971] 207.99.88.182 - - [07/Apr.... Output: 207.99.88.182 - - [07/Apr.... The counter part has been driving me nuts ...
1
vote
0answers
65 views

SQL statement with several brackets

I have a request with several conditions related with OR. In module : $array = array('hostel.postal_code' => $filter_state, 'region.name' => $filter_state, 'hostel.town' => $filter_state, ...
0
votes
4answers
57 views

How to print brackets in python

i want to print "(" in python print "(" + var + ")" but it says: TypeError: coercing to Unicode: need string or buffer, NoneType found can somebody help me? that cant be too hard... -.-
2
votes
2answers
48 views

Method for checking corresponding open/close “brackets”

I am writing a sample application in which I've came across the following problem: I have to check to characters in terms of their "compatibility". boolean checkIfPairCorrect(Character c1, ...
0
votes
0answers
84 views

Implement DOM Node Methods in VBA Excel

Im trying to retrieve / get data's from a certain using vba. What my problem is im trying this code .document.getElementById('itemlist').tBodies[x].ChildNodes[1].ChildNodes[3].textContent which ...
-2
votes
1answer
85 views

angle bracket mysql php [duplicate]

I have troubles fetching data from a MySQL database when the text inside a VARCHAR field is surrounded by angle brackets ('<' and '>' characters). Let me be more specific. This is the table from ...
-1
votes
1answer
28 views

how to split php valriable value contains brackets? [closed]

I have this value (33.8352932, -117.91450359999999) in a variable how can I split these two number in two variable without brackets??
0
votes
2answers
28 views

Javassist CtMethod.make() gives “syntax error” on array initialization using empty brackets

I am using Javassist to build a runtime class. I am creating a CtMethod: CtMethod m = CtMethod.make(constructMethodSource, bclass); Inside "constructMethodSource" is this line which is a legitimate ...
0
votes
2answers
28 views

Multiple separate bracketed code segments after a conditional statement

In the following code example - is it bad practice? Also why does the compiler go into the 2nd bracketed statement? I've oddly never experienced this before but it came up in an interview situation. I ...
1
vote
4answers
76 views

Curly bracket sets and sorting in python 3.2

Hi I have two questions: I am trying to build sets of two using i.e. of the form example: new = [{24,33},{12,13},{17,19},....]. Basically I have data in the form of two lists say one is called N = ...
-2
votes
2answers
49 views

Varibles from switch statment outside

I am writing a program which contains ComboBox where you choose text and this text will be converted to coefficient using switch statment in program. The problem is that I can't use varible outside ...
0
votes
0answers
38 views

How to read file in R with column names having brackets?

I have one input file. cat file IstCol (ABC) IInd COl (DEF) 34 45 32 45 > input<-read.table("file",sep="\t",header=TRUE) > input ...
0
votes
1answer
67 views

PHP - Getting arguments from inside brackets

Im trying to get information set inside some brackets... Example: [Article title="Article 1" show="Article Name Goes Here"] <p>Some other simple text here...</p> [Article title="Article ...
0
votes
0answers
115 views

FTP incorrect response to PASV command

Why does some FTP passive mode response sometimes changes in a way that the closing bracket is left out. I expect the FTP response to PASV command to be: 227 Entering Passive Mode ...
0
votes
0answers
48 views

Netbeans: TAB behaviour in brackets

Is there any way to make Netbeans exit brackets when pressing Tab, just like Eclipse does? In Eclipse you can see a green line at the position the cursor will move to when pressing Tab, which is ...
1
vote
1answer
230 views

SSRS 2008 Multiple X-Axis Categories - Remove Brackets

I am trying to add multiple X-axis categories to an SSRS 2008 line chart, but by default it is adding these brackets to each additional category. Is there a way to remove these brackets? I am trying ...
3
votes
1answer
564 views

Java Regex - split comma separated list, but exclude commas within parentheses

I'm trying to write regex that will split a Java string like this: 300x250,468x60,300x400v(480x320,768x1024,100x100),400x300v,640x480v(200x200,728x90) in to something like this: 300x250 468x60 ...
0
votes
1answer
78 views

Is it possbile to implement the index operator '[]' with generic capability [duplicate]

Possible Duplicate: Why it is not posible to define generic indexers in .NET? how to write a function to take any object with an index operator I've never seen any usage like that. But I ...
1
vote
1answer
71 views

Regex in Javascript to match the format of the SUM function in Excel

I'm having trouble formatting my Regex expression in Javascript to test if the value in a textbox matches a similar format to that which you see in Excel. So far I have this: var equation = ...
0
votes
5answers
143 views

Howto replace multiple '<' and '>' inside html-tag attribute string?

I read contents from a rte and before submitting them to a server i need to replace < and > with their html entities inside some title attributes. I do not want to use Dom-Operations here ...
-3
votes
1answer
63 views

Why am I geting these bracket errors in my code?

I'm really not sure why it's doing this but it seems to be an issue with brackets. I'm getting the following errors while running this segment of code for Android in Eclipse: private static final ...
2
votes
2answers
58 views

Actionscript calculates erroneous division without brackets

Given this class definition: package { public class Calc { public static function I(i:Number, s:Number):Number { var A:Number = helper_A(s); var B:Number = helper_B(s); var ...
0
votes
1answer
156 views

Turn an object to a square bracket string (not using JSON.stringify)

I have this Javascript object (that is created on-the-fly by my plugin code): { "field": { "name": "Name", "surname": "Surname" }, "address": { "street": "Street", ...
1
vote
2answers
128 views

How do I bulk copy files with brackets in the filename using Powershell

$Basically what I'm trying to do is: I'm pulling information from a .csv spreadsheet that contains a list of files that I need. The problem is, the directory they are in contains 16,000+ files! I ...
0
votes
2answers
75 views

MVC3 RegularExpression attribute - How do I refuse brackets

I'm using MVC3 and need to create a RegularExpression attribute for a property in a model to validate that the user has not entered brackets. Anyone know what this regex string would look like? This ...
0
votes
0answers
128 views

Sublime Text 2: Nested Brackets with Differing Colors

I'm trying to determine if there is a way to have each nested bracket level be a different color. For example, if there are three nested brackets, the outermost would be red, second outermost would be ...
1
vote
1answer
123 views

StyleCop - CSharp.Maintainability warning for operator precedence

Consider the following arithmetic calculations. I have shortened them as much as possible for the sake of simplicity: x = y + y * z; x = y + z - y * z; This is perfectly legal without StyleCop, ...
0
votes
1answer
118 views

Does Brackets (editor) have bundles like textmate

I just downloaded brackets after hearing recent buzz about the editor. There are some really cool / useful features out of the box. Alot of my projects use templating engines, like twig. Does this ...
4
votes
3answers
157 views

Giving brackets precedence

I'm very new to java and I'm building a calculator, that takes an equation and evaluates it. I'm using the Scanner method to get an input, but this means my input is a Scanner type. What should I do ...
0
votes
3answers
87 views

Bracket parse error on if statement [closed]

Trying to put some slightly tricky form validation (in this instance for checkboxes) in relation to a sign up form for a tennis tournament <?php if ( ( ...
8
votes
3answers
938 views

How to prevent Sublime Text 2 from swallowing closing brackets, quotes and parentheses?

Sublime has this behaviour which is really annoying sometimes when you have to type in constructions with lots of brackets. When you type ( it adds () and puts the cursor in the middle, all fine, if ...
-1
votes
1answer
172 views

Zend 2 - Form element name with square brackets [closed]

I feel that Zend has decided to abandon the possibility of having the name of a form element with square bracket like something['otherone']. In Zend Framework 1, you could make $element->setBelongsTo ...
2
votes
0answers
538 views

CodeBlocks can't insert brackets

When I use CodeBlocks, for C++ and I try to insert brackets, I use ALT-GR + B and ALT-GR + N. B for left and N for right. Now in CodeBlocks, when I insert B, which is left, it appears like this and ...
0
votes
1answer
210 views

What font does Adobe Edge Code (Brackets) use for its code editor?

Does anyone know? Also what syntax highlighter is is using? Prettify etc? Thanks!
1
vote
1answer
94 views

Function to parse jQuery elements contains brackets

I have this text ( ) ( ( ) ( ( ) ) ( ( ) ) ) Pratically each bracket is a span and i have writed this code to organize the nested structure: myobj.each(function(i) { var isOpen = $( this ...
2
votes
1answer
74 views

PHP - Node of a object - Variable name with “-” inside

As per discussion How to check if a string can be used as a variable name in PHP? the user TIM is giving there a good answer but still not solving my problem. I am doing the call exactly like that, ...
-1
votes
1answer
31 views

php strings with <>s in them seem to need escaping

I've got this down to a two line php file: $s = "<option value=\"%id%\">%desc%</option>"; die($s); This will output: %desc% If I change the <>s to & l t ; & g t ...
0
votes
3answers
1k views

using stacks to check for matching brackets in java

hi guys I am trying to create a program to allow a user to input a sequence of brackets (one at a time) and check to see whether there is a corresponding ending bracket. The brackets are entered on a ...
1
vote
2answers
76 views

Minor tweak autopair emacs

Does anyone know how to change autopair.el in such a way that, when you have a region, pressing ( results in the point being before the ( instead of within the brackets? It has been annoying me for ...
0
votes
1answer
56 views

Common error in BlueJ but it isnt getting solved. Related to Brackets

Okay, So the Problem with this is that the brackets are annoying. It never seems to work for some reason. I have checked on other websites but this does not get fixed. import java.util.Scanner; class ...
0
votes
1answer
144 views

Get last number from editbox Matlab

I am making calculator with matlab and I want to take last input number from editbox and put it into sind() brackets, when sin button is pushed. How to do that? I searched for several hours and didn't ...
0
votes
1answer
108 views

Create PDF file without dictionary data type (angle brackets)

I want to create a PDF file which does not contain angle brackets in it's source. This apparently implies not using the dictionary data type, as this involves << and >>. Is it possible ...
7
votes
1answer
210 views

Visual studio - white spaces before and post equal sign, brackets and other

I use Visual studio 2012 and plugin Visual assist X ver. 1916. I have two questions. 1) When I write equal sign (=), I want automatic insertion of white spaces before and after the sign (I must ...
1
vote
2answers
147 views

Javascript Regular Expression get contents between curly brackets (with curly brackets inside)

Think of a string like this: public function test(data) { if (1 == 2) { alert("Wtf?"); } switch (data) { case 'test': alert("Test"); break; ...
0
votes
1answer
91 views

requirejs exports dosent work in firefox 15

I use a external library that uses requirejs I dont know how its work but FileError is in the global scope in other browser or in FF8 but in FF 14/15 says FileError not defined. define(function ...

1 2 3 4