mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2005
Posts: 8
N
NeoFLN Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
N
Joined: Aug 2005
Posts: 8
whell, isinCS is not case sensitive operator in mirc 6.16 becose when compare ass and assh this return true.
just type in status ->
//if (ass isincs raper cococ assh) { echo ok }
if you see the echo i have reason. smile to correct than i use $matchtok with $len to locate the word i need.
i think that using ->
//if (ass $+ $chr(32) isincs raper cococ assh) { echo ok }
<- resolve problem too.

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
using if (ass isincs assh) will return true, because ass is in assh. The fact that there's an h at the end of the 2nd item is irrelevant.

Now, if you could prove that a statement like
if (ass isincs ASSH) and have it return true, then I would say you have a valid bug.

But at the moment, you're comparing a lowercase item to a lowercase item, which will return true, presuming that the first item is in the second, which, per your example, is the case.

Joined: Oct 2004
Posts: 73
M
Babel fish
Offline
Babel fish
M
Joined: Oct 2004
Posts: 73
looks like you're looking for
Code:
 
//if $istok( raper cococ assh,ass,32) { echo ok }
 

There is also $istokcs incase you really were after case sensitive comparison but just really screwed up the example.

Joined: Jul 2003
Posts: 655
Fjord artisan
Offline
Fjord artisan
Joined: Jul 2003
Posts: 655
Maybe what you are looking for is either 'iswm/iswmcs' or '===' although as stated $istok/$istokcs is probably best if you are trying to find if a word exists exactly in string

if (* ass iswm raper cococ assh) { echo ok } - will not echo
if (* ass iswmcs raper cococ asS) { echo ok } - will not echo
if (ass === raper cococ assh) { echo ok } - will not echo
if (ass === asS) { echo ok } - will not echo


"Allen is having a small problem and needs help adjusting his attitude" - Flutterby
Joined: Aug 2005
Posts: 8
N
NeoFLN Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
N
Joined: Aug 2005
Posts: 8
thanks to all and sorry my equivocated post smile


Link Copied to Clipboard