0
votes
4answers
78 views
Looping through files in a folder
Hi, I'm fairly new when it comes to programming, and have started out learning python.
What I want to do is to recolour sprites for a game, and I am given the original colours,
fo …
0
votes
1answer
11 views
Can we enable looping of rows in a UIPickerView as we do it in UIDatePicker?
I am developing an App where i am struck with the looping of rows in a UIPickerView. Can anyone please help me? it would be of great help if anyone would post the solution. I want …
0
votes
3answers
84 views
Looping Forever
I'm trying to loop an exception, but for some reason its not giving me the option to re write my scanner file:
I don't know how to use BufferedReader so that's why I'm using this. …
3
votes
3answers
232 views
Double For loops in R
How do you properly write a double for loop in R?
For example, in C I would do
int i, j;
for (i = 1; i < 6; i++) {
for (j=i; j <= 3; j++) {
printf("%i,%i\n",i,j …
0
votes
4answers
125 views
Another jQuery noob question about functions
I want to "functionalize" more of my jQuery code, instead of writing little standalone snippets. Here's an example. Let's say I have some li's that I'd like to use as triggers, lik …
1
vote
3answers
279 views
C#: Looping through lines of multiline string
What is a good way to loop through each line of a multiline string without using much more memory (for example without splitting it into an array)?
3
votes
7answers
733 views
Nested Loop / Loop Control tutorial
I'm looking for a good tutorial on writing and designing loops. I understand the basics of loops but nested loops give me a lot of trouble. To give you and idea, the following pat …
0
votes
4answers
2k views
flex 3 iterate through object values
hi,
i have an object which represents a database table. I want to iterate through this object and print printing each value. What can i use to do this?
i want to do this inside m …
6
votes
2answers
450 views
How do I skip to a specific input line in Perl?
I want to skip to the first line that contains "include".
<> until /include/;
Why does this not work?
0
votes
3answers
70 views
Loop Boundries and Performance Issues
Hi,
Suppose we want to loop through all the items in a dropdown list and no item is added or removed while we are looping. The code for it is as follows:
for (int i = 0; i < d …
0
votes
1answer
269 views
How to loop through an table and turn rows into objects using nokogiri
I want to use nokogiri to loop through a html and create an object corresponding to every row. I am able to define the root xpaths where I want the data to fill the object varible …
1
vote
1answer
209 views
Javascript for/in loops through properties, not indexes and returns strings.
Ok, I have this code:
var room = [ { time: 0, people: 0 } ];
and then:
time = 5;
for( var i in room ) {
if( room[i].time < time ){
spliceIndex = i + 1;
}
}
console.l …
3
votes
2answers
148 views
Clojure loop reads one extra.
When length is 4 following loop executes 5 times. Reading 5 characters from the stream.
(loop [i (.read stream) result "" counter length]
(let [c (char i)]
(println " …
2
votes
2answers
306 views
Clojure Variables and Looping
From googling around, I found that using while loops or using variables is discouraged.
Now I implemented a very simple algorithm that will read characters from an inputstream and …
0
votes
2answers
145 views
c# Method looping and control.
Hi guys,I have a method that I would like to run over and over again.I would like to be able to start and stop this process.
I have been using this pattern for some socket work an …
