1
vote
3answers
64 views
foreach loops & stdclass objects
I've seen similar questions on here but I can't seem to apply the solutions to my problem. I have a variable called $results which I got from an API. I'll change the proper nouns …
1
vote
4answers
83 views
PHP - Foreach loops and ressources
I'm using a foreach loop to process a large set of items, unfortunately it's using alot of memory. (probably because It's doing a copy of the array).
Apparently there is a way to s …
2
votes
5answers
374 views
Python strange behavior in for loop or lists
Hi, I'm currently developing a program in python and I just noticed that something was wrong with the foreach loop in the language, or maybe the list structure. I'll just give a ge …
0
votes
5answers
236 views
How can I replace multiple foreach loops with a ‘for’ loop or a recursive function?
Hello:
I am stuck with a bunch of foreach loops and would like to know if there is a way to hone them down to a simple 'for' loop or a recursive function? I'm trying to generate H …
1
vote
5answers
563 views
Understanding for each loop in Java
The code below doesn't do what I expect. Every string is null after this code executes.
String[] currentState = new String[answer.length()];
for(String x : currentState)
{
x …
0
votes
4answers
134 views
PHP: Limit foreach() statement?
How can i limit a foreach() statement?
Say i only want it to run the first 2 'eaches' or something?
0
votes
7answers
48 views
Array a string in the following format?
How can i array a string, in the format that $_POST does... kind of, well i have this kind of format coming in:
101=1&2020=2&303=3
(Incase your wondering, its the result …
3
votes
7answers
320 views
Challenge: C# Foreach - Before, After, Even, Odd, Last, First
Since C# doesn't have a before,after,last,first etc. as part of its foreach. The challenge is to mimic this behavior as elegantly as possible with the following criteria:
Must al …
0
votes
1answer
96 views
Php foreach loop, with looping error messages
Hello,
I have a foreach loop that is suppose to check to see if a checkbox is checked by an item. If the checkbox is checked I need to see if the file upload part of the script h …
0
votes
3answers
121 views
Check Upload file type from an array in PHP.
Hi,
I know this has been asked a few times before. However, it's something I've had a problem with for a long time. How can I check if a file extension and mime type are in an ar …
2
votes
5answers
128 views
Whats the replacement of For-Each loop for filtering?
Though for-each loop has many advantages but the problem is ,it doesn't work when you want to Filter(Filtering means removing element from List) a List,Can you please any replaceme …
1
vote
5answers
134 views
edit list inside foreach loop
I have an object with the following structure: (pseudocode)
class Client
{
- int ID
- int? ParentID
- string Name
- datetime CreateDate
- int ACClientID
- List <Client> Clie …
2
votes
4answers
300 views
foreach loop does not loop through all item in list - C#
I have a basic foreach loop that calls a static method which makes a connection to a database and inserts some data. For some reason it will only iterate through the first item in …
1
vote
3answers
138 views
What is the best way to check a ListView for checked Items in C#?
Hi!
I'm writing a Database Editor / Bill of Materials Maker (2 separate .exe) for work, and I have this crazy issue. Here's how the flow works in the apps: Open Database, Search D …
1
vote
3answers
215 views
C# foreach loop causes CS 0246 Type or namespace could not be found
I have a foreach loop that cycles through a list of types and creates an instance of each one. However, when I build, it gives a CS0246 error ("The type or namespace could not be …
