VB中常量字符串里要包含双引号怎么写

2024年11月28日 06:29
有3个网友回答
网友(1):

Const a = """Give the solution"",he said"
用两个双引号代替一个双引号
结果是"Give the solution",he said

网友(2):

Const s$ = """这是常量""" & ",望采纳!"
Private Sub Form_Load()
    Debug.Print s
End Sub

网友(3):

Const a As String = """123"""