Preserved Topic: ISIN? |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: Maryland, USA |
posted 06-24-2001 02:11
I'm making myself an active desktop, and I want to make sure that there is at least one period inside the textbox when I submit it. here is my if statement: code: if (url.length != 0) && if('.' ISIN url) {
|
Paranoid (IV) Inmate From: New Jersey, USA |
posted 06-24-2001 02:26
ISTHERE such a thing as ISIN? |
Paranoid (IV) Inmate From: Maryland, USA |
posted 06-24-2001 04:38
There are in a bunch of other languages. I'm looking to see if there is a certain character or substring in a bigger string, such as ".". A person I know said that he thought it was "isin", so I tried to verify with this.. place.. |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 06-24-2001 09:44 |
Paranoid (IV) Inmate From: Lebanon |
posted 06-25-2001 08:57
you can also using the indexOf(".") which returns a non-zero value if match is found. |