[solved] gettokenindex return nil

Things you’d like to miss in the future...
Post Reply
binocular222
Posts: 1416
Joined: 04 Nov 2008 05:35
Location: Hanoi, Vietnam

[solved] gettokenindex return nil

Post by binocular222 »

Code: Select all

echo gettokenindex("#169","#168|#169|#170");  //return 0
Last edited by binocular222 on 25 Nov 2017 14:36, edited 1 time in total.
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

highend
Posts: 13346
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: gettokenindex return nil

Post by highend »

Your token contains a wildcard...

Code: Select all

echo gettokenindex("#169","#168|#169|#170", , ""); // -> 2
echo gettokenindex("#169","1168|1169|1170"); // -> 2
But imho the flags = "" param isn't explained very well in the help file
for that command...

Btw, Don:

Code: Select all

[flags=iw]
You should include the "c" here as well
One of my scripts helped you out? Please donate via Paypal

Post Reply