Strings
-- Single Namespace
SET "rachel" "Fashion"
GET "rachel"
STRLEN "rachel"
APPEND "rachel" " Designer"
GET "rachel"
#get first 5 letters
GETRANGE "rachel" 0 4
#Skip last 2 (extreme right is -1 and -2 and so on)
GETRANGE "rachel" 0 -3
# Substring
GETRANGE "rachel" 5 8
# Get the last 5 letters
GETRANGE "rachel" -5 -1 Last updated