IF TEST = 1 { ASSIGN Example1 = "Abc.456" ASSIGN LocationVar = 4 } //left(count) -- [String expression] Returns the left most count characters. //[Numeric expression] Takes the left most count characters and tries TO //read them as a number. IF the characters do not represent a number, 0 will //be returned instead ASSIGN StringLeftVariable = "{Example1.left(LocationVar - 1)}" ASSIGN NumericLeftVariable = Example1.left(LocationVar - 1) //right(count) -- [String expression] Returns the right most count characters. //[Numeric expression] Takes the right most count characters and tries TO //read them as a number. IF the characters do not represent a number, 0 will //be returned instead. ASSIGN StringRightVariable = "{Example1.right(LocationVar + 1)}" ASSIGN NumericRightVariable = Example1.right(LocationVar + 1)