Functions Index :: S :: StrUnquote

[<< up one level]

Module:

string :: core

Definition:

StrUnquote(string x)

Description:

Returns its argument with one " character at the begining and one at the end stripped (if both they exist). " characters inside the string are left untouched.

Examples:

s = Chr(34) + "test string" + Chr(34)

l1 = StrLen(s) # l1 == 13, s == '"test string"'

t = StrUnquote(s)

l2 = StrLen(t) # l2 == 11, t == "test string"

 

[<< top]