查看: 496  |  回复: 0
  VB6 字符串中包含双引号的处理办法
楼主
发表于 2023年4月24日 14:40

在字符串处理时,如果字符串变量必须有引号,怎么处理呢?如

str= [MyName = "MaNongKu" Class = "6"]

很多初学者肯定使用了C/C++的方法,"\"",或者""",这些在Vb中都是错误的。

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Private Sub Command1_Click()
    Dim str As String
    str = "[MyName =" & """" & "MaNongKu" & """" & " Class = " & """" & "6" & """" & "]"
    Debug.Print str
End Sub

运行结果就是:

[MyName ="MaNongKu" Class = "6"]


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com