Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
42 views

Regex - recognize the indefinite article “a” or “an” using JAVA

my task is to devise a regular expression that will recognize the indefinite article in English – the word “a” or “an” i.e. to write a regular expression to identify the word a or the word an. I must ...
1
vote
1answer
340 views

Want WPF DataGrid tooltip to behave like Excel Cell Comments

This is the behaviour i get from an Excel Cell that has comments: 1) Put mouse anywhere on the cell and the comment pops-up like a yellow tooltip; 2) Comment will stay up indefinitely for as long as ...
1
vote
1answer
112 views

PHP - MySQL - Select runs indefinitely

I have three tables listings: id, pid, beds, baths, etc, etc, etc, db locations: id, pid, zip, lat, lon, etc, etc, etc, db images id, pid, height, width, raw, etc, etc, db id, pid & db are ...
0
votes
2answers
117 views

How do I check for infinite (1.#INF) and indefinite (1.#IND) numbers?

template <class T> MyClass { public: // ... void MyMethod(T dbNumber) { // ... T dbResult = do_some_operation_on_dbnumber(dbNumber); ...
0
votes
7answers
659 views

making a programme run indefinitely in python

Is there any way to make a function (the ones I'm thinking of are in the style of the simple ones I've made which generate the fibonnacci sequence from 0 to a point, and all the primes between two ...