创建字符表达式

参见

字符表达式由字符操作符和下列 Visual FoxPro 元素共同构成:

您可以在字符串中嵌入引号(" 和 '),只需将字符串用方括号([ ])括起来:

STORE [Robert's Diner] TO cCompanyName
STORE [See the "Sunday Special"] TO cBanner

您也可以在字符串中嵌入引号,只需将字符串用另一种引号括起来:

STORE "Robert's Diner" TO cCompanyName
STORE 'See the "Sunday Special"' TO cBanner