Xbasic
unquote Function
This function is deprecated. Prefer to use UNQUOTE2() instead.
Syntax
C UNQUOTE(C string)
Arguments
- stringCharacter
A string of characters.
Description
Remove quotes from a string.
Example
dim str as c="\"\"\"Hello\"\"\"" ? str = """Hello""" ? unquote(str) = "Hello"
See Also