Concatenate (smoosh) strings

Write an expression the evaluates to the concatenation of the values of the string variables s1 and s2.

First character

Write an expression the evaluates to the first character of the value of the string variable s.

Length

Write an expressions that evaluates to the length of the string value of the variable s.

Last character

Write an expression the evaluates to the last character of the value of the string variable s.

All but first

Write an expression the evaluates to a string containing all but the first character of the string in variable s.

First three

Write an expression the evaluates to a string containing the first three character of the string in variable s.

All but first and last

Write an expression the evaluates to a string containing all but the first and last character of the string in variable s.

Last three

Write an expression the evaluates to a string containing the last three character of the string in variable s.

UPPER CASE

Write an expression the evaluates to the value of the string variable s converted to all upper case.

lower case

Write an expression the evaluates to the value of the string variable s converted to all lower case.

Capitalize

Write an expression the evaluates to the the value of the string variable s with the first letter capitalized and the remaining letters in lower case.

Capitalize first three

Write an expression the evaluates to the the value of the string variable s with the first three letters capitalized and the remaining letters in lower case.