Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
368 views

Strange C++ syntax

I have 8 years of coding experience, but I have never seen the operator [] passed as a parameter to the function definition. For example, the following code (from an open source project): ...
4
votes
1answer
384 views

What do the square brackets in LaTeX logs mean?

I'm currently working on a parser that reads complete LaTeX logs. Most of the log format is, though weird, easy to figure out, but these square brackets are puzzling me. Here's an example from near ...
4
votes
5answers
760 views

accessing array values without square brackets in php

In php how can I access an array's values without using square brackets around the key? My particular problem is that I want to access the elements of an array returned by a function. Say ...
3
votes
6answers
875 views

What does square brackets in CSS class names means?

I saw here square brackets that are used in class names: <input class="validate[required,custom[onlyLetter],length[0,100]]" name="firstname" type="text" /> What does this means ?
3
votes
1answer
636 views

Braces: [Brackets], (Parentheses) & {Curlies} in Ruby & Rails

So the loose tolerance of Ruby to use braces sometimes and not REQUIRE them has led to alot of confusion for me as I'm trying to learn Rails and when/where to use each and why? Sometimes parameters ...
2
votes
1answer
56 views

Can't type certain square brackets in Visual Studio 2010 + Resharper

In certain cases typing an opening square bracket results in nothing at all. In particular when I want to type them on a variable in the right side of assignment expression: arr[i] = arr So I ...
2
votes
5answers
95 views

Overloading operator[] for a template Polynom class

I am writing a template Polynom<T> class where T is the numeric type of its coefficients. The coefficients of the polynom are stored in an std::vector<T> coefficients, where ...
2
votes
2answers
271 views

C++ Linked List: Overload bracket operators []

So, I decided to look back at some data structures to keep myself sharp ;) I started to implement a hash table, when I remembered that I needed linked lists for the buckets so that I can avoid hash ...
2
votes
3answers
55 views

Is there any reason to write a database column between square brackets?

I am maintaining a database created by another person in SQL Server. In one table I found a column whose name is between square brackets. The name of the field is desc and it is stored in the table as ...
2
votes
1answer
116 views

Regex for getting information from square brackets

I'm attempting to make something like shortcodes in WordPress, and I'm looking for a regex that will take something like [title:This is a title] and turn it to just This is a title. It would also be ...
2
votes
5answers
493 views

How to remove brackets from end of string with regex

Looking to have a recursive function that takes a string and removes the ending '[x]'. For example 'abc [1] [3]' needs to be 'abc [1]'. The string could also be 'abc [1] [5] [2]' and would need to be ...
1
vote
3answers
71 views

When square brackets are required in bash if statement?

Usually, I use square brackets in the if statement: if [ "$name" = 'Bob' ]; then ... But, when I check if grep succeeded I don't use the square brackets: if grep -q "$text" $file ; then ... When ...
1
vote
1answer
87 views

Access grandchild of a variable (parent.child.grandchild) without dots and one pair of brackets

I'm building a canvas-related class with a kind of conversion table. The conversion table can be edited by the user. (Isn't really relevant, but maybe you want to know why): cLayout = ...
1
vote
3answers
131 views

Regex Replace A Variable Within Brackets, Including Brackets

How do I get rid of a variable within square brackets, including the brackets themselves? E.g. [152] or [153] or [154]. I am using Yahoo Pipes.
1
vote
1answer
156 views

Is square brackets use with checkbox input elements PHP-only?

Given a construct like this: <input type="checkbox" value="red" name="color[]" /> <input type="checkbox" value="green" name="color[]" /> <input type="checkbox" value="blue" ...
1
vote
4answers
363 views

Square bracket arrays [closed]

Possible Duplicate: Is array name a pointer in C? So, I usually declare arrays using pointers. However, you can also declare arrays using square brackets notation: char a[] = "ok" ; char ...
1
vote
1answer
301 views

Using square brackets to concatenate things in Javascript?

Anyone know why this isn't working? $('#screen').css({ 'background-image': [bg_num == 1 ? 'josh' : 'jessi'] + '_background.jpg', 'background-color': 'red' }); The background color is getting ...
1
vote
3answers
144 views

How do i store a set of values in an array without using square brackets, but by using pointers

In C programming, how can a store a set of values entered by the user into an array using only pointers and no square brackets?
1
vote
3answers
184 views

“with” scope and properties with square bracket notation

Is it possible to access object properties that can only be accessed with the square bracket notation when inside a "with" statement. Example: var o = { "bad-property": 1, "another:bad:property": 2, ...
1
vote
2answers
2k views

mySQL Regexp with square brackets

I am trying to match strings like '[sometext<someothertext>]' (i.e., left square bracket, text, left angle bracket, text, right angle bracket, right square bracket) within a column in mySQL. ...
0
votes
0answers
3 views

Flex 4 & FlashBuilder: incorrect databinding warning

I have a simple case of a label whose text contents are bound to the value of a vector at a variable index. I define the binding using square brackets: text="{_vector[_index]}" FlashBuilder gives ...
0
votes
2answers
58 views

Statement using dot syntax produces expected result but bracket syntax does not [closed]

Possible Duplicate: What's the difference between dot syntax and square bracket syntax? I've tried using these two expressions: [[[self display] text] stringByAppendingFormat:digit]; ...
0
votes
1answer
65 views

resharper search with pattern square bracket

how can I escape "[" in Resharper 6s Structural Search (C#). If i am searching for a pattern which contains a square bracket i just got the info: pattern is ambiguous. Is there any documentation of ...
0
votes
1answer
103 views

How to close all opening square bracket tags that aren't closed?

Ok, so I have a message, can a regular expression be used to determine if there are square brackets within it, and if so, determine if they aren't closed. For example, and opening square bracket is ...
0
votes
2answers
39 views

Two questions about objective-c: framework link and “self” in dot & square bracket expression

I am learning iphone dev now. Now I am reading book "iPhone 4 Development". During reading this book, I am confused about some syntax about objective-c used in this book. Ok, here are my questions: ...
0
votes
2answers
179 views

Javascript Square Bracket Notation Multiple Dynamic Properties

This may sound a bit unusual, I've never needed to use square bracket notation in this way before, and racking my brains I can't think of a way to produce the desired outcome. I'm implementing a ...
0
votes
0answers
137 views

Check if parameter is present in JSON object at any depth

A api returns a JSON response at undefinable depth where some elements may or not be included. How do I check if a property is present? Some of the parameters include weird names like "@param" or "$". ...
0
votes
4answers
104 views

How can I write a square bracket to a text file in php?

I'm trying to write a php script that will generate a variety of new php pages, but I'm finding that I'm unable to write a square bracket out. When I escape a square bracket in the same way as other ...
0
votes
4answers
153 views

Trying to write a c# program that parses a text file that contains data seperated by headers in square brackets

Im writting a program that parses a specific text file that has data in it that im going to prcess later. Each part is seperated by a header in square brackets i was wondering how i could put each ...
0
votes
2answers
301 views

Nested conditions in Bash (if [[…)

I have several questions I would like to be answered since I'm not a Bash expert so far... There are several conditions I need to check before performing a specific task, but some of them are related ...
0
votes
2answers
171 views

Strange brackets in code I am reading

What does it mean if I have in the middle of c++ code, things in brackets likt: [..] What do these brackets mean? is it cli?
0
votes
2answers
260 views

Javascript can't find strings containing square brackets

I'm using this function that helps my webdevelopers to find a piece of code in a webpage: function findString (str) { var strFound; strFound=self.find(str); if (strFound && ...
0
votes
0answers
210 views

javascript regular expression followed by open square bracket

text = text.replace(/\.(?=[a-zA-Z0-9\[])/g, "<span style='background-color: #FF00FF'>.</span>"); I want to use javascript to highlight all full stops that is followed by letters, numbers ...
0
votes
2answers
894 views

Regular expression to grab link between square brackets

I need to lift the YouTube link from some text which looks like this: [youtube=http://www.youtube.com/v/qpbAe2HyzqA&hl=en&fs=1&] Can anyone help?
0
votes
2answers
544 views

how to find a string containing a square bracket?

i'm using a regular expression to search for a bunch of keywords in a text. All keywords are found but one: [DAM]Berlin. I know it contains a square bracket so i escaped it, but still, no luck. What ...
-4
votes
2answers
63 views

Regular Expression - Match [XPTO_XPTO] [XPTO_XPTO]

I need to match the following words Underscore is optional, blank space between brackets are optional too. "[XPTO_XPTO] [XPTO_XPTO]" I tried this [/\[/][\w][/\]/]+[ ]{1,}[/\[/][\w][/\]/]+ I ...