9
votes
6answers
933 views
Associative arrays in Shell scripts
We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?
8
votes
3answers
3k views
How do I remove objects from a javascript associative array>
var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;
Now if I wanted to remove "lastname"?....is there some equivalent of …
6
votes
2answers
849 views
Passing an associative array from c# to Powershell
I'd like to pass an associative array from C# to Powershell. As an example I'd like to execute this powershell line of code:
PS C:\> get-command | select name, @{N="Foo";E={"Bar"}} -first 3
Name …
4
votes
6answers
170 views
Formatting associative array declaration
When declaring an associative array, how do you handle the indentation of the elements of the array? I've seen a number of different styles (PHP syntax, since that's what I've been in lately). This …
3
votes
2answers
90 views
Origin of Map in Computer Science
In computer science, there are two definitions of the word map. The first is as an associative array, a type of container that maps values of one type to values of another type. An example of this is …
3
votes
4answers
157 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 (MyClassObjInstance) …
3
votes
4answers
812 views
How to determine if an associative array has a key?
In ActionScript 3, is there any convenient way of determining if an associative array (dictionary) has a particular key?
I need to perform additional logic if the key is missing. I could catch the …
3
votes
5answers
515 views
Effective ways of finding an element in a Javascript array
I am using an array with titles. Each titles index corresponds to an id in a database which contains html for that given title.
Lets say I have a string which contains one of the titles.
title = …
3
votes
2answers
375 views
Extracting a subset of values from an associative array (php)
I want to do something seemingly very simple, but I can't find anything about it: simply extract a subset of an array similar to array_splice, but using keys to retrieve the values :
$data = …
3
votes
5answers
383 views
How are javascript arrays implemented?
Namely, how does the following code:
var sup = new Array(5);
sup[0] = 'z3ero';
sup[1] = 'o3ne';
sup[4] = 'f3our';
document.write(sup.length + "<br />");
output '5' for the length, when all …
3
votes
3answers
3k views
In PHP, how do you change the key of an array element?
I have an associative array in the form key => value where key is a numerical value, however it is not a sequential numerical value. The key is actually an ID number and the value is a count. This …
3
votes
1answer
359 views
How to pass an array parameter in TOAD
Using toad and an oracle database, how can I call a sp and see the results by passing an array to one of the parameters of the sp?
2
votes
1answer
10 views
ActionScript 2: How do I determine the number of keys in an associative array without iterating?
Is there a function that allows me to determine the number of keys in an ActionScript 2 associative array without iterating over that array?
// ascertain the length/size of an associative array
var …
2
votes
4answers
55 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 how I can do this …
2
votes
3answers
63 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 the key/val
…
