The square-bracket tag has no wiki summary.
2
votes
4answers
70 views
What is returned by this operator overloading function?
I have the following listing from a page:
#include "vector.h"
// An axis-aligned bounding box
class AABB
{
public:
VECTOR P; //position
VECTOR E; //x,y,z extents
AABB( const ...
-1
votes
1answer
47 views
Colon notation with for loop and square brackets in matlab [closed]
I have a question relating to colon notation used in conjunction with for loop, and the square brackets [ ]. For example,
a = [ ]; N = 10;
for i = 1:x:N;
a = [a zeros(1,i)]
end
If the value ...
0
votes
0answers
46 views
jquery adding form elements with square brackets
I'm trying to dynamically add hidden input fields to a form with square brackets in their id/name:
<input type="hidden" name="myField[]" id="myField[]" value="someValue" />
The adding works ...
0
votes
1answer
62 views
Why is it required to return a reference from overloading bracket operators (OR: why is an lvalue not returned otherwise)?
I've tried overloading the bracket operators for a class, to make accessing the array less tedious. What I don't understand is, why is it neccesary to declare the return type of the overload function ...
2
votes
3answers
33 views
Python brackets substring not working, why?
I am new in python and doing some testing I found this.
>item="testing315testing08634567890"
>item.index("086")
17
>item[17:10]
''
>item[17:]
'08634567890'
I don't understand why is not ...
4
votes
2answers
112 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
1answer
42 views
extJS - when-to & when-not to use square brackets
i have been learning extJS, and i could cram it up but i want to understand...
in the following cases we use square brackets, if not it gives error
require : ['Ext.container.Viewport']
...
0
votes
2answers
82 views
Overloading 2D array operator and throwing exception
I've been thinking this through and didn't come up with anything useful. I have matrix represented by 2 classes:
class CMatrix {
public:
CMatrixRow * matrix;
int height, width;
...
0
votes
0answers
37 views
Output redirection inside/outside square brackets in Bash
Can somebody kindly clarify me if there is any difference concerning redirection between:
[ $var1 -eq $var2 ] &> out.tmp
and
[ $var1 -eq $var2 &> out.tmp ]
This is, redirecting ...
10
votes
1answer
77 views
Bracket notation on Ruby numbers
I found that when using bracket notation on the number 100 in Ruby, I get this:
irb(main):001:0> 100[0]
=> 0
irb(main):002:0> 100[1]
=> 0
irb(main):003:0> 100[2]
=> 1
So I assumed ...
0
votes
2answers
116 views
php: remove double square brackets and everything in between
From a variable, I want to remove double square brackets [[ ]] and everything in between, and then replace it with img inserted
I've got the following column result:
...
-1
votes
2answers
119 views
How can I echo square brackets in php [closed]
I want to echo the following code, but its not working:
<?php
if ( is_page('residenz') )
{ echo '[nggallery id=12]'; }
else if ( is_page('apartment-royal-ii') )
{ echo '[nggallery id=13]'; }
...
0
votes
1answer
130 views
JS syntax for checkbox name attribute with square brackets
This function limits the number of checkboxes selected by the user, but I'm having trouble getting it to work when the name attribute has square brackets (i.e. name=baz[]).
For some reason I can't ...
0
votes
1answer
75 views
form variable names with square brackets in
when upload files, I make something like 'preview'. It stores form variables as
for(i=0;i<count($UpFile);i++){ //loop
<input name="Files[',htmlspecialchars($UpFile_name[$i]),'][FileName]" ...
1
vote
1answer
99 views
Regex and nested square brackets to separate subsets
I'm trying to build a quick JavaScript function that will receive a JavaScript object like this:
{
"sample[one]": "value 1",
"sample[hard][damn_you[0]]": "this 1",
...
3
votes
4answers
99 views
How to determine which exceptions “x[]” might throw?
C# reference for square brackets says: Square brackets [] are used for arrays, indexers, and attributes. They can also be used with pointers. (It also says, for arrays) An exception is thrown if an ...
1
vote
2answers
119 views
Overloading the [] operator of a template class, get and set, in c++
Basically, I'm trying to make template map/dictionary class for c++ (I know this have already been done, assume I'm masochistic).
I started up, writing this skeleton:
#pragma once
template <class ...
0
votes
4answers
147 views
Serializing a dynamic property to JSON
I have a Web API project that hydrates an object defined as the following from JSON. I am attempting to insert this object into a RavenDB database, but am finding that the dynamic property 'Content' ...
0
votes
2answers
284 views
What do these square brackets mean in c#? [duplicate]
Possible Duplicate:
.NET: What are attributes?
What do the square brackets mean in the following code:
public class LoginModel
{
[Required]
[Display(Name = "User name")]
public ...
1
vote
0answers
178 views
Import a excel data to the datatable via OleDbDataAdapter replaces square brackets to the round ones
I'm using this code to import excel (.xls) data but all square brackets in columns are replaced by round ones. For example column dm[kg]:
before import: dm[kg]
after import: dm(kg)
I'll appreciate ...
3
votes
3answers
914 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?
2
votes
2answers
91 views
C DMA - Using brackets with malloced memory
It's been a while since I've written C so this bug makes me feel like I'm losing my mind. I'm writing a program to model a simple cache. Don't worry about the details.
The problem is when I ...
0
votes
1answer
102 views
Creating brackets in html issue?
i am making some tournament brackets. for some reason i am having an issue in aligning the logo divs in with the lines of the bracket lines. Can you please help me and tell me how i would position ...
0
votes
1answer
211 views
Escape [ Square Brackets ] in Fast Report Strings
Good Morning.
I am trying to use Fast Reports v1.4.42
Everything was going well up until I attempted to concatenate a string.
I am trying to create a string that looks somewhat like the following.
...
0
votes
1answer
339 views
square bracket characters in email address
When we receive a MimeMessage which contains recipient InternetAddresses containing square brackets, we get 'javax.mail.internet.AddressException: Local address contains illegal character in string' ...
0
votes
1answer
114 views
Check for Square Brackets in Datatable.Select
I would like to know how to do a
dataTable.select([Short Description] like '%[%]%').
The above line errors out with invalid syntax. Can somebody tell me the right way?
0
votes
2answers
116 views
how to use php's push_array to add a timestamp and value to a two-dimensional array
How can I use array_push to add a timestamp and a value to a two-dimensional array with square bracket syntax?
I successfully get rows, each with a timestamp and associated value from a mysql ...
0
votes
0answers
106 views
php to strip nested square brackets insert into URL
I working out to strip nested square brackets insert into URL for security issue,
if I have URL by insert characters [xyz] like:
www.site.com/toylist?page[xyz]=2
the website will stop response ...
1
vote
1answer
219 views
Documentation of squared bracket `[` function
I have a function in R that looks somewhat like this:
setMethod('[', signature(x="stack"),definition=function(x,i,j,drop){
new('class', as(x, "SpatialPointsDataFrame")[i,]) })
I use it to get a ...
7
votes
2answers
3k views
C++ : Overload bracket operators [] to get and set
I've the following class :
class risc { // singleton
protected:
static unsigned long registers[8];
public:
unsigned long operator [](int i)
{
...
2
votes
4answers
527 views
VB.NET Brackets () {} [] <>
Can someone please fill in the blanks for me, including a brief description of use and perhaps a code snippet? I'm well aware of the top two in particular, but a little hazy on the last one ...
2
votes
3answers
438 views
Find text in square brackets but not in parentheses
If I have a string like this (from a Wiki-markup) that I need to parse in Java:
this link (is [[ inParen ]] and) (this) one is [[ notInParen ]]
I'd like to use regex to extract the texts inside the ...
3
votes
2answers
1k views
Removing [] around column in SQL Server 2005
when I was renaming the column in SQL Server, I accidentally inserted the square brackets around the column. The actual statement that I used was:
SP_RENAME 'customer.[EMPLOYEENAMES]', ...
7
votes
2answers
457 views
Need RegExp help for Linux Bash grep command to filter out lines containing square brackets
Using the following example, I need to filter out the line containing 'ABC' only, while skipping the lines matching 'ABC' that contain square brackets:
2012-04-04 04:13:48,760~sample1~ABC[TLE ...
4
votes
1answer
696 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 ...
3
votes
3answers
3k 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 ...
0
votes
2answers
113 views
Statement using dot syntax produces expected result but bracket syntax does not [duplicate]
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];
...
1
vote
1answer
265 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 ...
2
votes
5answers
263 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 ...
3
votes
2answers
1k 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
77 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 ...
0
votes
1answer
252 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
78 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
442 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 ...
8
votes
3answers
549 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):
...
2
votes
1answer
218 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 = ...
0
votes
0answers
336 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
380 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 ...
2
votes
1answer
637 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 ...
0
votes
4answers
387 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 ...



