Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图用什么来代替“。
bString = Replace(aString, """, "")
不起作用。
它说'sting 常量必须以双引号结尾'
我该怎么办?
在 VB.Net 中,双引号通过加倍来转义:""""
""""
我以前用字符代码做过这个 -
bString = Replace(aString, chr(34), String.Empty)