Tagged Questions
The array-manipulation tag has no wiki summary.
5
votes
8answers
710 views
How can I print only every third index in Perl or Python?
How can I do a for() or foreach() loop in Python and Perl, respectively, that only prints every third index? I need to move every third index to a new array.
4
votes
2answers
585 views
LotusScript ArrayUnique function doesn't seem to work with date/time arrays
I've tried to figure this issue out on my own, but perhaps there is something I am misunderstanding about the way ArrayUnique works.
Here is some sample LotusScript code:
'Let's test some dates
...
4
votes
3answers
232 views
Perl array manipulation
Is there a single line in perl which does some magic like this.
Array = [100,200,300,400,500];
percent = 50%
new_Array = [50,100,150,200,250];
That is, I give an array and specify a percent. And ...
4
votes
4answers
302 views
Distributing a function over a single dimension of an array in MATLAB?
I often find myself wanting to collapse an n-dimensional matrix across one dimension using a custom function, and can't figure out if there is a concise incantation I can use to do this.
For example, ...
3
votes
3answers
184 views
PHP manipulating multidimensional array values
I have a result set as an array from a database that looks like:
array (
0 => array (
"a" => "something"
"b" => "something"
"c" => "something"
)
1 ...
3
votes
1answer
271 views
PHP array manipulation
i have this array:
Array
(
0 => "3_some val",
1 => "1_some other val",
2 => "0_val",
3 => "2_value",
4 => "4_other value"
)
considering ...
3
votes
1answer
282 views
MATLAB Array Manipulation
I'm trying to insert multiple values into an array using a 'values' array and a 'counter' array. For example, if:
a=[1,3,2,5]
b=[2,2,1,3]
I want the output of some function
c=somefunction(a,b)
...
2
votes
3answers
154 views
How to convert array key values into percentages
So i've got an array that looks something like of:
Array ( [Safari] => 13 [Firefox] => 5 )
How do i a make a new array that looks like :
Array ( [Safari] => 72.2% [Firefox] => 27.7% )
...
2
votes
1answer
401 views
Rotating a 2-d array by 90 degrees
A frequent question that props up during array manipulation exercises is to rotate a two dimensional array by 90 degrees. There are a few SO posts that answer how to do it in a variety of programming ...
2
votes
3answers
4k views
Grouping arrays in PHP
I have an array of 200 items. I would like to output the array but group the items with a common value. Similar to SQL's GROUP BY method. This should be relatively easy to do but I also need a count ...
1
vote
2answers
28 views
Ruby Built In Method to Create Multidimensional Array From Single Dimensioned Array
If I have an array like this: [0, 1, 2, 3, 4, 5], is there a built in method to create this:
[[0, 1, 2], [3, 4, 5]] given a width of 3? If there is no built in method, how could I improve on this?
...
1
vote
3answers
27 views
array_map and append string to elements of array
I have an array like this:
$a = array('aa','bb','cc','dd');
I want to add 'rq' string at the begging of all the elements of array. Is it possible to do it with calling array_map() on this array?
1
vote
5answers
219 views
Javascript array manipulation
I want to create string (delimited by pipe '||') from the contents of an array. I want to remover $ from the item and add || between two items. But I don't want to add || after the last array item. ...
1
vote
2answers
279 views
Manipulating an array (printed by php-cli) in shell script
I am a newbie with shell scripts and I learnt a lot today.
This is an extension to this question Assigning values printed by PHP CLI to shell variables
I got the solution to read a variable in my ...
1
vote
5answers
273 views
Finding data gaps with bit masking
I'm faced with a problem of finding discontinuities (gaps) of a given length in a sequence of numbers. So, for example, given [1,2,3,7,8,9,10] and a gap of length=3, I'll find [4,5,6]. If the gap is ...
1
vote
1answer
200 views
How to get x and y coordinates from a linear grid simply?
I have myself a linear grid of Vector2s stored in a Vector2[,] array, and i also have another Vector2 that lies within this grid. How can i simply extract both the nearest 4 grid points and their ...
0
votes
1answer
27 views
parse delimited string into associative array
I'm just optimising my code and if there is a function that does something like this, i can get rid of my own
There are duplicates for parsing query strings but the string I'm paring is in this ...
0
votes
1answer
107 views
PHP - Search array in array
I have tried googling for the past one hour straight now and tried many ways to search for an array, in an array.
My objective is, to find a keyword in the URL, and the keywords are in a txt file.
...
0
votes
1answer
97 views
php: parsing and converting array structure
I need to convert one array structure into another array structure.
I hope someone will find it worthy their time to show how this could be done in a simple manner. It's a little above my array ...
0
votes
2answers
222 views
PHP Method to Concatenate Array and String
I am building a PHP class to handle database management, and I wondered if it was possible to build a method which could receive a string with a concatenated array as one variable.
For example, take ...
0
votes
1answer
226 views
Searching for a substring inside an array in php
Hi I would like to know if there is a good algorithm to the search of a substring inside an array that is inside another array,
I have something like:
Array(
[0] => Array(
...
0
votes
1answer
84 views
A Simple PHP Array Manipulation
how would you turn this array:
array(
0 => Title1,
1 => Title2,
3 => Address1,
4 => Address2,
)
to this array:
array (
0 => array(
'title' => ...
0
votes
3answers
207 views
How do I “add” strings in PHP - not concatenate, but “add” them. (as if each character was a base 36 numbers)
Unfortunately I inherited some code (c/c++) that does some string manipulation and now I need to copy/port that over to php so this functionality can be accessed over the internets.
Specifically ...
-1
votes
1answer
72 views
Remove Last element from a Character Array in Android?
What i Have: At present i have a String variable i-e:
String str_StoreValue;
I have appended it with some string values and converted it into a Character Array by doing this:
char[] ...