Closed Thread Icon

Preserved Topic: ISIN? (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=18101" title="Pages that link to Preserved Topic: ISIN? (Page 1 of 1)" rel="nofollow" >Preserved Topic: ISIN? <span class="small">(Page 1 of 1)</span>\

 
Hebedee
Paranoid (IV) Inmate

From: Maryland, USA
Insane since: Jan 2001

posted 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) {
...
}



I can't seem to figure out how to work with ISIN, or if it ISIN javascript (corny). Help.

butcher
Paranoid (IV) Inmate

From: New Jersey, USA
Insane since: Oct 2000

posted posted 06-24-2001 02:26

ISTHERE such a thing as ISIN?

- Resolutions, Of All My Fruitless Searches -

Hebedee
Paranoid (IV) Inmate

From: Maryland, USA
Insane since: Jan 2001

posted 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..

mr.maX
Maniac (V) Mad Scientist

From: Belgrade, Serbia
Insane since: Sep 2000

posted posted 06-24-2001 09:44

There's no "ISIN" in JavaScript... You should use regular expressions instead, like this:

if ((url.length != 0) && (url.match(/\./))) {
...
}

lallous
Paranoid (IV) Inmate

From: Lebanon
Insane since: May 2001

posted posted 06-25-2001 08:57

you can also using the indexOf(".") which returns a non-zero value if match is found.

« BackwardsOnwards »

Show Forum Drop Down Menu