Functions Index :: I :: IsQuoted
Module:
Definition:
IsQuoted(string x)
Description:
Returns true if x starts and ends with a " character.
Note that for zero-length and one-length strings it returns false.
Examples:
s = StrQuote("test string")
b1 = IsQuoted(s) # b1 == true
t = "test string"
b2 = IsQuoted(t) # b2 == false
u = Chr(34) # a single " character
b3 = IsQuoted(u) # b3 == false