Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
12answers
907 views

Explaining nested arrays to a programmer

How have you explained nested arrays to a programmer. I'm thinking someone that has an entry level understanding of programming, but is trying to do more complicated coding. The array with array ...
3
votes
3answers
118 views

Abstracting boxed array structures in J

I've been working on a J function for a while, that's supposed to scan a list and put consecutive copies of an element into separate, concatenated boxes. My efforts have taken me as far as the ...
1
vote
3answers
32 views

Extracting a Subset Key from an Array

I am working on a theme options page and trying to send the css key to my php css file. I can select the array key from the parent array but i do not know how to grab the css key from the subset. Can ...
1
vote
4answers
59 views

Is it possible to have an array containing both arrays and primitives in Java?

I'm doing a project in Java in which I'm looking at the frequency characters occur after each other character in a text. When I'm collecting my results, I'm storing them in a 2d array of ints. ...
1
vote
1answer
165 views

Ruby, Append value to existing value for key value pair in hash table

I have a nested hash table. If i write json.each{|key, value| puts value; puts; puts value[x]; puts; puts value[x][0]; } I get a result along the lines of Title1 name1 ...
0
votes
0answers
5 views

XMLRPCClient parsing nested array in android

I am beginner android developer.I am using XMLRPC Library Andorid this library works well while server response contains result in a single level array (no Nesting).But when server send us nested ...
0
votes
1answer
57 views

mongodb updating nested array in a document using PHP

document structure example is: { "dob": "12-13-2001", "name": "Kam", "visits": { "0": { "service_date": "12-5-2011", "payment": "40", "chk_number": "1234455", ...
0
votes
1answer
120 views

KnockoutJs beta 3.0 - How do you destroy child elements?

Currently i have a setup that looks like this: ko.applyBindings(viewModel); $(".removeButton").live("click", function() { viewModel.ProductCategories.destroy(ko.dataFor(this)); ...
0
votes
4answers
39 views

PHP displaying multidimensional array

I have this array similar to this: $suppliers = array( 'Utility Warehouse' => array('Gas' => array(0,0), 'Electricty' => array(0,0)), 'British Gas' => array('Gas' => array(93,124), ...
0
votes
2answers
75 views

Compare multi dimentional arrays in javascript

I would like to compare 2 "multidimensional" arrays (arrays nested in arrays). var old_dataArray=new Array(("id-2", "message", "user"), ("id-1", "message", "user"), ("id-0", "message", "user")); var ...
0
votes
1answer
67 views

PHP to Smarty, displaying some nested Arrays

I'm having some issues displaying some nested array results in smarty... here's what I have: $searchResults - an array, where each row is a result set. No problem here. $searchResults[$row][users][] ...
0
votes
1answer
204 views

Nested templates

I have the following code <script type="text/javascript"> //<![CDATA[ /* JavaScript */ function Session(name, index) { this.Messages = []; this.Name = name; ...
0
votes
1answer
57 views

MYSQL Query statment to replace PHP loops

Suppose i have the following tables : projects( project_id , project_name ) documents( document_id,document_name , project_id) which is kind of top-down hierarchically , i use select statement ...
0
votes
2answers
106 views

force nested array [closed]

I have the following code which returns a simple array if one result is found and a nested array if more. $query = @mysql_query( $q ); if ( $query ) { $this->num_rows = mysql_num_rows( $query ...
0
votes
2answers
70 views

Nested Array Troubleshoot for Perl

I am having trouble with my array of references which point to another array. Here's a snippet of my code: # @bah is a local variable array that's been populated, @foo is also initialized as a global ...
0
votes
1answer
264 views

Printing a subarray in an array in smarty (foreach)

I'm trying to print a subarray in an array with the smarty template engine. Say I have an array structure like this: Array ( [0] => Array ( [directory] => One Day As A Lion - ...
0
votes
1answer
240 views

Search in Nested Tables and Insert the result into new Nested Table!

How can I insert result of an WITH SELECT into a Nested Array (with two attributes) in it? Here are the DDL and DML SQLs; Don't worry about the NUMBER( 8 ) CREATE OR REPLACE TYPE DATE_RANGE IS ...
0
votes
1answer
243 views

How to create nested php arrays recursively?

I have some data in this format: one,one two,two sub_one,one sub_two,two sub_sub_one,sub_one sub_sub_two,sub_two sub_sub_sub_one,sub_sub_one sub_sub_sub_two,sub_sub_two Now I want to create nested ...
0
votes
4answers
132 views

Nested named parameters in PHP

Named parameters are great for a long list of options in a PHP user defined function or class. But what about nested options? Eg: function foobar($foo,$bar,$options=array()) { $default_options ...
0
votes
1answer
383 views

Using NSPredicate in 2D Arrays

This question is based off of the same app/source from my previous question which can be found here: How to manage memory using classes in Objective-C? I have a nested array which looks something ...
0
votes
1answer
390 views

using nested arrays by php http_build_query() and recieve them in flash AS3

i am having this hard time figuring what is needed to do, i am using URLVariables to send/recieve values between flash and PHP the problem is, i am unable to access nested arrays ( array inside an ...