标签: c# string
我有这个字符串值:
filteredInput = "CONTAINS(Address, '"+ state +"');
filteredInput的返回值为
CONTAINS(Address, 'statehere')
我想要这样的返回值:
CONTAINS(Address, '"statehere"')
问题是'“ + state +”'是c#分配字符串值的方法的一部分。 如何使字符串为““ statehere”“?
谢谢