VBA编程去掉字符串的单引号
时间: 2023-09-30 09:09:07 浏览: 145
可以使用VBA中的Replace函数,将字符串中的单引号替换为空字符串,例如:
```
Dim str As String
str = "This is a 'string' with 'single quotes'."
str = Replace(str, "'", "")
```
执行完上述代码后,变量str中的值将变为:"This is a string with single quotes."
阅读全文