LOOKDOWN - BASIC Stamp Command Reference
Page 178
•
BASIC Stamp Programming Manual 2.0b
•
www.parallaxinc.com
SYMBOL Value = B0
SYMBOL Result = B1
Value = 17
Result = 15
LOOKDOWN Value, (26, 177, 13, 1, 0, 17, 99), Result
DEBUG "Value matches item ", #Result, "in list"
-- or --
Value VAR BYTE
Result VAR NIB
Value = 17
Result = 15
LOOKDOWN Value, [26, 177, 13, 1, 0, 17, 99], Result
DEBUG "Value matches item ", DEC Result, " in list"
DEBUG prints, “Value matches item 5 in list” because the value (17)
matches item 5 of [26, 177, 13, 1, 0, 17, 99]. Note that index numbers count
up from 0, not 1; that is, in this list, 26 is item 0.
What happens if the value doesn’t match any of the items in the list? Try
changing “Value = 17” to “Value = 2.” Since 2 is not on the list,
LOOKDOWN leaves Result unaffected. Since Result contained 15 before
LOOKDOWN executed, DEBUG prints “Value matches item 15 in list.”
By strategically setting the initial value of Result, as we have here, your
program can be written to detect when an item was not found in the list.
Don’t forget that text phrases are just lists of byte values, so they too are
eligible for LOOKDOWN searches, as in this example:
SYMBOL Value = B0
SYMBOL Result = B1
Value = "f"
Result = 255
LOOKDOWN Value, ("The quick brown fox"), Result
DEBUG "Value matches item ", #Result, "in list"
-- or --
Value VAR BYTE
Result VAR NIB
Value = "f"
Result = 255
1
2
e
2
sx
2
p
2
T
HE INDEX NUMBER OF THE FIRST
ITEM IS
0,
NOT
1.
U
SING TEXT IN THE VALUE LIST
.
1
2
e
2
sx
2
p
2
Summary of Contents for BASIC Stamp 2e
Page 1: ...BASIC Stamp Programming Manual Version 2 0c...
Page 34: ...Quick Start Guide Page 32 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Page 340: ...ASCII Chart Page 338 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Page 342: ...Reserved Words Page 340 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Page 346: ...Conversion Formatters Page 344 BASIC Stamp Programming Manual 2 0b www parallaxinc com...