Top "Range" questions

A range is an extent of values between its lower and upper bound.

calling .each{} on IntRange returns the range not each integer

I think I've got some funny expectations... I want to iterate the numbers from 1 to 10. As a while loop it …

groovy int range each
How to scan an IP Range C#

How to scan a specific range of IP and also increment it to user defined range.. in like most of …

c# networking ip range network-scan
range and xrange for 13-digit numbers in Python?

range() and xrange() work for 10-digit-numbers. But how about 13-digit-numbers? I didn't find anything in the forum.

python range numbers xrange
Python: Checking to which bin a value belongs

I have a list of values and a list of bin edges. Now I need to check for all values …

python range binning
VBA Excel: Rename columns for easy referencing

I am writing a script that transfers data from Excel cells to different word tables. So far, I am doing …

vba excel range named-ranges
How can I pattern match on a range in Scala?

In Ruby I can write this: case n when 0...5 then "less than five" when 5...10 then "less than ten" else "a …

scala pattern-matching range
Only index needed: enumerate or (x)range?

If I want to use only the index within a loop, should I better use the range/xrange function in …

python range enumerate
How to keep ranges on form datasource when manually add filters?

I have a strange problem on form: I added a range to filter records in datasource executeQuery() method, this works …

axapta x++ ax range
How is irange() any different from range() or xrange()?

I was going through Python Generators Wiki when I came across this RangeGenerator page which talks about irange() - This …

python range generator xrange
SQL: Merge Date Ranges

I've a table, which describes work slices of a business working calendar: (date format is 24 hours format) PK | STARTDATE | ENDDATE __________________________________________ 1 | 2012/07/21 02:00 | 2012/07/21 04:00 2 | 2012/07/21 03:00 | 2012/07/21 10:00 3 | 2012/07/21 06:00 | 2012/07/21 17:00 4 | 2012/07/21 18:00 | 2012/07/21 19:00 …

sql date intervals range