Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
8answers
1k views

Regex to match 2-10, but not 99

I have a field on a form that takes the following values: -1, 2-10, 99 I have a business rule that's concerned with answers 2-10. I'm trying to write a regular expression that will match 2-10 but ...
2
votes
5answers
330 views

Interpreting Number Ranges in Python

In a Pylons webapp, I need to take a string such as "<3, 45, 46, 48-51, 77" and create a list of ints (which are actually IDs of objects) to search on. Any suggestions on ways to do this? I'm new ...
0
votes
1answer
587 views

How to index numeric fields and search them by range in Lucene.Net?

I'm looking for an efficient way to index and search numeric fields in Lucene.Net. Right now my need is for integer values only. I want to search by ranges of values (between x and y, more than ...