| View previous topic :: View next topic |
| Author |
Message |
DoT_PiTcH Contributor

Joined: 07 Aug 2002 Posts: 85
|
Posted: Tue Jun 14, 2011 6:50 pm Post subject: @match() |
|
|
ok i have a list with numbers 1 - 24 in it
my code gets a number from client and removes that number from list.... let use "1" as example. i do the following
if @match(1, %%compid)
list delete, 1
then when client disconnects i want to re-add to the pool of numbers
but using the
if @match(1, %%compid)
it comes back as "true" and says compid "1" matches list item "10" can i do an EXACT function on Match |
|
| Back to top |
|
 |
Hooligan VDS Developer


Joined: 28 Oct 2003 Posts: 480 Location: California
|
Posted: Wed Jun 15, 2011 1:04 pm Post subject: |
|
|
Yes...
Hooligan _________________ Hooligan
Why be normal?
Last edited by Hooligan on Wed Jun 15, 2011 1:14 pm; edited 1 time in total |
|
| Back to top |
|
 |
Hooligan VDS Developer


Joined: 28 Oct 2003 Posts: 480 Location: California
|
Posted: Wed Jun 15, 2011 1:12 pm Post subject: |
|
|
| Code: | if @equal(1,@match(1, %%compid),exact))
|
Hooligan _________________ Hooligan
Why be normal? |
|
| Back to top |
|
 |
|