mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2007
Posts: 9
Z
ZoDiaC Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2007
Posts: 9


when i selected #chaco-corrientes , this message shows , can i get only #chaco-corrientes

0 +fs 0 0 0 n3 +fs 0 0 0 #chaco-corrientes +fs 0 0 0 +fs 0 0 0 +fs 0 0 0 #chaco-corrientes +fs 0

i use $did(2).seltext

thnx to all


i am a newbie

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
use $gettok($gettok($did(2).seltext,2,35),1,32)

/help token identifiers

Joined: Aug 2007
Posts: 9
Z
ZoDiaC Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2007
Posts: 9
chaco-corrientes+fs
they show me this ,any help?

Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
Maybe matchtok (#) is sufficient?
Code:
$matchtok($did(2).seltext,$chr(35),1,32)

Joined: Aug 2007
Posts: 9
Z
ZoDiaC Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2007
Posts: 9
thnx i want eliminate the +fs how can i do

thnx

Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
One possible way would be to use token identifiers again grin
This is slightly more precise than a simple $remove, as tokens identifiers work "word"- (token separator-) sensitive...
Code:
var %text = $did(2).seltext, %remove = +fs
while ($findtok(%text,%remove,1,32)) { var %text = $deltok(%text,$v1,32) }
echo -a Removed %remove from $did(2).seltext : %text


Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
use $gettok($gettok($did(2).seltext,2,35),1,43)

In your original post, it looked like there was a space between the channel name, which you want, and the +fs, which you don't.

That's what I was basing the usage of the character 32 token delimiter, rather than using 43, which is the ascii value for the + character.

Joined: Aug 2007
Posts: 9
Z
ZoDiaC Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2007
Posts: 9
thnx for everyhing

Joined: Aug 2007
Posts: 9
Z
ZoDiaC Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2007
Posts: 9
thnx bro for the help


Link Copied to Clipboard