foreach is a looping construct that executes a given piece of code for each element in a list/collection/array. In contrast to a for loop, the foreach loop doesn't require the coder to maintain a counter variable to avoid off-by-one (fencepost) bugs.
1
vote
2answers
37 views
How many distinct values are inside an array
Say you have an array like so :
int [] myArray = 1,2,3,1,4,2,6,1,5,3,6,1;
How can you calculate the amount of distinct values inside the array = 6 ?
0
votes
2answers
56 views
Compare array php foreach loop
I have 2 arrays and i want to create an output array.
Example array requirements for Title and Subtitle field:
Array
(
[title] => Array
(
[required] => 1
[minLength] => ...
0
votes
1answer
17 views
Using Linq to check if generic list in Dictionary contains a value
How do I check if a dictionary already contains a set of coordinates? I am using SelectManager and Where but the count is still wrong. I don't think its checked the values in the the generic list.
...
-4
votes
0answers
46 views
list product using php [closed]
i am trying to create a product list as below structure using php but not able get the loop .each product table and list block will be generated dynamically.
like each of the li block and td block ...
0
votes
3answers
35 views
Calling same function in multiple object's context?
I have an object structure like so;
{
this.parent = undefined;
this.children = [];
}
All values in children have the same structure as above except that their parent would be would a ...
-1
votes
4answers
42 views
How to create a generic list in each element of a foreach loop
I am getting a parse error for using the variable i becuase it would change the meaning of i. How do I create generic lists for each int[]c in matchTile.
int i = 0;
foreach(int[] c in matchTile){
...
0
votes
1answer
46 views
How to check if dictionary contains a value in a generic list
I have a list of coordinates that are stored in a generic list. I want to be able to iterate through the list and check if any coordinates are adjacent to each other. If they are, then I know its ...
0
votes
1answer
33 views
WCF MVC model for A view
Im trying to display data to my view by foreach loop but I have problem to define
@model Can someone help me please.
This is my Service Method
public IEnumerable<CategoryType> GetCatList()
...
0
votes
2answers
45 views
Foreach and unset()
Ran into a little snag and wondering if there is a "best practices" way around it.
So I just learned that "A php foreach will execute on the entire array regardless. Test unsetting a value that is ...
0
votes
1answer
21 views
max winning and losing streaks (code optimization)
I made this code for calculating max winning & losing streaks on an array of values. But I can get my head around doing it in one foreach loop. Currently I'm using 2 loops as follow :
public ...
1
vote
2answers
20 views
Trouble with Jquery for each and $(this), I can't reference one element
I am currently having trouble jquery I'm trying to trigger an event where when the user clicks on the header of an article, the hidden paragraph snippet is displayed under it fades in, my problem is ...
0
votes
5answers
37 views
How to delete the values of an array by key number. Is it even possible?
I have come seeking the wisdom of all of you wise and smart people! After looking all day yesterday and a few hours today i've given up. I've tried many things but nothing has worked and i've come to ...
0
votes
2answers
23 views
How do I loop through numbered indexes in a stdClass Object?
This is the output that I'm trying to access:
stdClass Object
(
[results] => stdClass Object
(
[columns] => stdClass Object
(
[name] ...
0
votes
2answers
77 views
Why does the Foreach doesn't impact?
The code below doing a simple thing. manipulate the API's raw data and bind it to the view model's property.
I fetch data from a web service and save it to a object named calljsonObject. This is the ...
1
vote
2answers
37 views
Order arrays by price within an array after foreach loop php
I have created an array of arrays (I think) during a foreach loop:
$collectGroup = array();
foreach ($topTenList->searchResult->item as $group) {
$collectGroup['title'] = $group->title;
...
0
votes
1answer
48 views
PHP loop through explode()
I am currently using two fields from a database, The fields have words which are seperated by comma's (,).
Here is my code
$tags = explode(",",$tags);
$tagsdesc = explode(",",$tagsdesc);
...
0
votes
3answers
54 views
Really simple [closed]
Very new to PHP Arrays and can't find out how to do a simple thing.
This is what I started out with:
<div class="crew-member">
<?php
$crewMember = "Tony Webster";
...
0
votes
1answer
39 views
Rails each loop logic
I have a problem with my each loop. The line that prints programdetail.name and programdetail.bodypart doesn't print the value. Also do you know how can I make this loop a little bit more efficient? I ...
0
votes
4answers
77 views
Is it bad to Instantiate the fileinfo class within a foreach loop? Is there a better way with C#? [closed]
My code below works but I'm concerned that its bad practice or may cause memory issues. But with my limited knowledge its the best way I've found. Can it be done any better?
Thanks
static void ...
-1
votes
1answer
45 views
How to pass a variable in a URL using Perl?
I'm trying to pass parameters in a URL. I don't know what's missing, I tried to see how the URL looks after executing this script.
my $request3 = HTTP::Request->new(GET => $sql_activation);
my ...
1
vote
6answers
37 views
PHP: Orderby “ID” foreach
Is there a way to make foreach display by newest content first (descending ID)?
I have tried finding but I couldn't make any of it work.
<?php
include_once('includes/connection.php');
...
2
votes
1answer
19 views
php - scandir and return matched files
I am trying to get a matched array of files using scandir() and foreach().
when I run scandir() then it returns all file list. Its okey here.
now in second step when I do foreach scandir()s array ...
1
vote
7answers
67 views
Echoing out everything in Multi-dimensional Array
Ok, so I'm trying to get the hang of multidimensional arrays, I know what they are and what they do.
In the example below I have created (probably not the most efficient way) a Cars array.
In this ...
1
vote
3answers
38 views
Using foreach loop with DataList on Page Load
I am working with a datalist on one of my pages, while trying to find the controls using a foreach loop it does not go into the loop.
protected void Page_Load(object sender, System.EventArgs e)
{
...
1
vote
1answer
56 views
How to search through array elements for match in hash keys in perl
I've an array that contains unique IDs (numeric) for DNA sequences. I've put my DNA sequences in a hash so that each key contains a descriptive header, and its value is the DNA sequence. Each header ...
0
votes
1answer
18 views
Loop into next column of Ultragrid
I am using foreach to loop into a grid by columns and while looping into one column i have to do a validation and loop into next visible column which is the validation and reset the image of the cell ...
0
votes
1answer
29 views
TCL - runtime error in foreach
Okay guys, i got weird error for tcl script.
This is working code:
foreach param $bucket {
if {[lindex $param 0] == "bucketState" &&\
([lindex $param 1] == "provisioned" ||\
[lindex ...
1
vote
2answers
26 views
trying to figure out how to call two variables in an array in powershell
just starting to learn loops and arrays. i understand how to call a single variable in an array ie:
$animals = gc "c:\temp\animals.txt"
foreach ($animal in $animals)
{write-host "The"$animal "sleeps ...
0
votes
1answer
49 views
foreach loop in 2D Arrays in C++
I have a 3x3 2D array. I want to reach to all of it's elements. Is it possible? I do this:
int myArray[3][3];
for(int &i: myArray){
//MY CODE HERE.
}
But when I do, I get error:
error: ...
3
votes
7answers
59 views
check multiple string contains to each other using javascript
I have three strings which contain comma separated numbers.
var str1 = "1,5,3";
var str2 = "2,5,1";
var str3 = "3,2,1,5";
I want to check these three strings with each other (To get the common ...
0
votes
2answers
88 views
Get checked checkboxes generated by foreach loop mvc
I am having problems with getting my checked checkboxes into my mvc controller and save them in the database. I generated my list with a for each loop in the create view.
My advert class:
public ...
0
votes
0answers
55 views
Checked values from foreach loop generated checkboxes mvc
I'm having a problem with getting my checked checkboxes into my mvc controller and save them in the database.
I generated my list with a for each loop in the create view.
My advert class:
...
47
votes
3answers
1k views
What is the correct way of using C++11's range-based for?
What is the correct way of using C++11's range-based for?
What syntax should be used? for (auto elem : container),
or for (auto& elem : container) or for (const auto& elem : container)?
Or ...
4
votes
3answers
134 views
Why is there no forEach method on Object in ECMAScript 5?
ECMAScript 5's array.forEach(callback[, thisArg]) is very convenient to iterate on an array and has many advantage over the syntax with a for:
It's more concise.
It doesn't create variables that we ...
6
votes
3answers
657 views
PHP Casting Variable as Object type in foreach Loop
Within the following code, $quiz_object->personalities contains an array of Personality() objects.
// Loop through each personality that exists for the quiz
foreach($quiz_object->personalities ...
0
votes
1answer
403 views
c:foreach with EL end value NumberFormatException
I want to use a jstl foreach loop to to display a certain number of elements defined by an attribute of my managed bean:
<c:forEach begin="0" end="#{MyBean.IntegerProperty}" step="1" var="o" >
...
-2
votes
1answer
124 views
Take an existing array and brake it up by value
I have a simplepie feed that spits out multiple feeds from each of the URL's that are loaded into a a associative array.
This associative array is used to sort the arrays alphabetically using the ...
0
votes
3answers
432 views
Print content of multidimensional array
I have a two dimensional array
public class TwoDimensions {
public static void main(String[] args){
String[][] names = new String[3][3];
names[0][0] = "Joe";
names[1][1] = ...
116
votes
9answers
143k views
For each in a array. How to do that in javascript?
I'm very new to JavaScript, but i do have a little bit of knowledge of c#.
What I have in my JavaScript is a array of objects.
This array will have a variating length.
At a certain point, I want to ...
601
votes
4answers
41k views
Is there a reason for C#'s reuse of the variable in a foreach?
When using lambda expressions or anonymous methods in C#, we have to be wary of the access to modified closure pitfall. For example:
foreach (var s in strings)
{
query = query.Where(i => i.Prop ...
3
votes
5answers
8k views
Java for loop syntax
I came across some Java syntax that I haven't seen before. I was wondering if someone could tell me what's going on here.
for (ObjectType objectName : collectionName.getObjects())
43
votes
4answers
27k views
Javascript, NodeJS: is Array.forEach asynchronous?
I have a question regarding the native Array.forEach implementation of Javascript: Does it behave asynchronously?
For example, if I call:
[many many elements].forEach(function () {lots of work to ...
3
votes
3answers
4k views
Enhanced for loop in 2D Array - JavaScript
I created the following 2D array in Javascript
// Create basic linear array
var ImgArray = new Array(4);
// Do the 2D array for each or the linear array slots
for (i=0; i < 4 ; i++) {
...
10
votes
3answers
12k views
while(list($key, $value) = each($array)) vs. foreach($array as $key => $value)?
Recently I experienced this weird problem:
while(list($key, $value) = each($array))
was not listing all array values, where replacing it with...
foreach($array as $key => $value)
...worked ...
3
votes
4answers
4k views
How do you combine two foreach loops into one
The language is PHP. I have one foreach ( $a as $b) and another foreach ($c as $d => $e). How do i combine them to read as one. I tired foreach (($a as $b) && ($c as $d => $e)), but that is ...
35
votes
3answers
83k views
jquery loop on Json data using $.each
Hi I have the following JSON returned in a variable called data.
THIS IS THE JSON THAT GETS RETURNED...
[
{"Id": 10004, "PageName": "club"},
{"Id": 10040, "PageName": "qaz"},
{"Id": 10059, ...
26
votes
7answers
22k views
Which is more efficient, a for-each loop, or an iterator?
Which is the most efficient way to traverse a collection?
List<Integer> a = new ArrayList<Integer>();
for (Integer integer : a) {
integer.toString();
}
or
List<Integer> a = ...
1
vote
6answers
2k views
limiting number of times a loop runs in php
I have a foreach loop that i need to limit to the first 10 items then break out of it.
How would i do that here?
foreach ($butters->users->user as $user) {
$id = $user->id;
$name = ...
5
votes
2answers
3k views
how to modify items in a Generic List using foreach?
I have the following Generic List which is populated with a list of string:
List<string> mylist =new List<string>();
myList.add("string1");
myList.add("string2");
Say I want to ...
159
votes
21answers
123k views
How do you get the index of the current iteration of a foreach loop?
Is there some rare language construct I haven't encountered (like the few I've learned recently, some on Stack Overflow) in C# to get a value representing the current iteration of a foreach loop?
For ...





