在VB.net中用双引号括起值

时间:2010-03-29 21:00:44

标签: vb.net

我在vb.net中有这个字符串。 如果您能告诉我如何将值括在双引号中,我将不胜感激

dim str as string=""
str.Append("EmpID=" & empNo & " DeptID=" & deptID & "")

我希望string的值为EmiID =“10”DeptID =“20”

5 个答案:

答案 0 :(得分:6)

使用双引号在字符串

中获取单引号
str.Append("EmpID=""" & empNo & """ DeptID=""" & deptID & """")

答案 1 :(得分:3)

ControlChars.Quote很好用:)

dim metatransferString as string =“”

答案 2 :(得分:2)

只需使用双引号,例如:

dim str as string=""
str.Append("EmpID=""" & empNo & """ DeptID=""" & deptID & """")

答案 3 :(得分:2)

使用ControlChars.Quote

dim str as string=""
str.Append("EmpID=" & cControlChars.Quote & empNo & ControlChars.Quote  & " DeptID=" & ControlChars.Quote  & deptID  & ControlChars.Quote)

答案 4 :(得分:0)

我知道这是一个非常古老的问题。但我这样用它

str.Append(String.Format("EmpID={0}{1}{0} DeptID={0}{2}{0}", Chr(34), empNo, deptID))

如果empNo = 10 DeptID = 20,则会给出EmpId =“10”DeptID =“20”