21
ScriptBasic / ScriptBasic Arrays
« Last post by John Spikowski on March 15, 2025, 09:23:55 PM »One of the best features of ScriptBasic is its array support. ScriptBasic supports index, associative and a combinations of both. There isn't a practical limitation with indices / levels or do arrays need to be predefined. The following example shows these features.
jrs@RPi-Zero2:~/sb/examples$ sbc array_demo.sb
id = 0001
type = donut
name = Cake
ppu = 0.55
batters
batter
[1]
id = 1001
type = Regular
[2]
id = 1002
type = Chocolate
[3]
id = 1003
type = Blueberry
[4]
id = 1004
type = Devil's Food
topping
[1]
id = 5001
type = None
[2]
id = 5002
type = Glazed
[3]
id = 5005
type = Sugar
[4]
id = 5007
type = Powdered Sugar
[5]
id = 5006
type = Chocolate with Sprinkles
[6]
id = 5003
type = Chocolate
[7]
id = 5004
type = Maple
[8]
id = 5008
type = Cherry
Number of batter items: 4
Number of topping items: 8
jrs@RPi-Zero2:~/sb/examples$
- JSON to a multi-level associative array
- Adding a new element to the arryay
- Displaying the array in a readable format
- Using the UBOUND() function to get quantity
Code: Script BASIC
- IMPORT webext.bas
- json = """{"id":"0001","type":"donut","name":"Cake","ppu":0.55,"batters":{"batter":[{"id":"1001","type":"Regular"},{"id":"1002","type":"Chocolate"},{"id":"1003","type":"Blueberry"},{"id":"1004","type":"Devil's Food"}]},"topping":[{"id":"5001","type":"None"},{"id":"5002","type":"Glazed"},{"id":"5005","type":"Sugar"},{"id":"5007","type":"Powdered Sugar"},{"id":"5006","type":"Chocolate with Sprinkles"},{"id":"5003","type":"Chocolate"},{"id":"5004","type":"Maple"}]}"""
- web::json2sba(json)
- json{"topping"}{8}{"id"} = "5008"
- json{"topping"}{8}{"type"} = "Cherry"
- web::sbadump(json)
- PRINT "\n\n"
- PRINT "Number of batter items: ", (UBOUND(json{"batters"}{"batter"}) + 1) / 2, "\n"
- PRINT "Number of topping items: ", (UBOUND(json{"topping"}) + 1) / 2, "\n\n"
jrs@RPi-Zero2:~/sb/examples$ sbc array_demo.sb
id = 0001
type = donut
name = Cake
ppu = 0.55
batters
batter
[1]
id = 1001
type = Regular
[2]
id = 1002
type = Chocolate
[3]
id = 1003
type = Blueberry
[4]
id = 1004
type = Devil's Food
topping
[1]
id = 5001
type = None
[2]
id = 5002
type = Glazed
[3]
id = 5005
type = Sugar
[4]
id = 5007
type = Powdered Sugar
[5]
id = 5006
type = Chocolate with Sprinkles
[6]
id = 5003
type = Chocolate
[7]
id = 5004
type = Maple
[8]
id = 5008
type = Cherry
Number of batter items: 4
Number of topping items: 8
jrs@RPi-Zero2:~/sb/examples$