Tagged Questions

2
votes
4answers
36 views

Finding last pair in associative array

I'm looping through an associative array with a foreach. I'd like to be able to check if the key value pair being handled is the last so I can give it special treatment. Any ideas …
0
votes
4answers
64 views

How do I create and add anonymous hashes to a known Hash during script execution?

I'll attempt to illustrate this with an example. Take a common example of a Hash of Hashes: my %HoH = ( flintstones => { lead => "fred", pal => "barn …
1
vote
2answers
20 views

Using associative array values from within the same array

I'm trying to access an associative array's key and value from within the same array. If I have 3 pairs in my array. Can I use the value of let's say the values of something and ot …
0
votes
3answers
77 views

jQuery JSON Associative Array

How do I access the name of an an item in an assosiative array using jQuery. For example how would I read "title", "link", "media", ect... in this { "title": "What we do in our …
1
vote
2answers
33 views

XML vs. Array in Flash

In manipulating data in Flash, which data format gives faster speeds in terms of searching and manipulation, XML or nested associative arrays? Meaning I currently send data in stri …
0
votes
3answers
46 views

Comparing two lists with a shell script

Suppose I have two lists of numbers in files f1, f2, each number one per line. I want to see how many numbers in the first list are not in the second and vice versa. Currently I am …
0
votes
3answers
67 views

Finding the minimum value’s key in an associative array

Hi, In PHP, say that you have an associative array like this: $pets = array( "cats" => 1, "dogs" => 2, "fish" => 3 ); How would I find the key with the low …
0
votes
2answers
249 views

passing associative array of type Timestamp to oracle stored procedure

We're running into a strange error using Oracle Odp.Net (connecting to Oracle 9). The problem is illustrated by the code snippet below. This is the error we're experiencing: ORA- …
1
vote
4answers
95 views

Java: What data structure to use to imitate PHP’s associative arrays?

I want a data structure that allows me to map keys to values, like PHP's associative arrays. Each key can only exist once, but a value can be mapped to any number of keys. What am …
2
votes
4answers
137 views

Can I use an stl map if I plan to use arbitrary class objects as the key?

I'm new to STL. The thing stumping me about using a map to store arbitrary objects: std::map<MyClassObj, MyDataObject> MyMap; is how I find objects. How would MyMap.find …
2
votes
3answers
52 views

Add an associated pair to a PHP array

I have an array, i tried writing array_push($json['Request']['Header'], "key" => "val"); but i received an error. Writing the below works but it adds an array instead of just …
-2
votes
1answer
67 views

How to build a tree structure from associative array [closed]

Hello Anybody know how to convert one-dimension associative array with parent connection to x-dimensions array tree structure view?
0
votes
4answers
41 views

convert associate array to XML in php

How do i convert an associate array to an XML string? I found this but get the error 'Call to a member function addChild() on a non-object' when running the line $node = $xml-> …
2
votes
3answers
151 views

How to define hash tables in bash?

Just what title says. I am surprised by insufficiency of results in Google search for this question! What I want to is the equivalent of Python dictionaries but in bash (and hence, …
1
vote
3answers
861 views

Checking if an associative array key exists in Javascript

How do I check if a particular key exists in a Javascript associative array? If a key doesn't exist and I try to access it, will it return false? Or throw an error?

1 2 3 4 5 next
15 30 50 per page