Single quotes and double quotes
- $a = 1
- $b = 2.54
- $x = abcdefg
Arrays
Mary
Joe
Bill
Sue
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Some Simple String Operations:
Concatenation:
bird.bird=birdbird
Multiplication:
bird x3 = birdbirdbird
Combined assignment/concatenation:
blue.=jay =
bluejay
Increment:
bluejay ++ =
bluejaz
Other operations using abcdefg
Next char/Next string: a
bcdefg
Next char/Next string: b
cdefg
Next char/Next string: c
defg
Next char/Next string: d
efg
Next char/Next string: e
fg
Next char/Next string: f
g
Next char/Next string: g
Other operations using array of names: Mary Joe Bill Sue
Name/Backwards Name: Mary
yraM
Name/Backwards Name: Joe
eoJ
Name/Backwards Name: Bill
lliB
Name/Backwards Name: Sue
euS