所以我的应用程序中有一个listview。我让用户从中选择多个项目,并将其保存在SQL-SERVER中。如果选择了多个项目,我将这些值保存为格式为105,106,107的字符串。现在我需要选择这些值并从中删除逗号,任何人都有任何想法吗?
答案 0 :(得分:2)
根据您的问题和对Mat的答案的评论我会说忘记删除逗号并使用Split
Dim strArray() As String
Dim intCnt As Integer
strArray = Split(strYourCommaDelimitedData, ",")
For intCnt = LBound(strArray) To UBound(strArray)
'Trim(strArray(intCnt)) or CInt(Trim(strArray(intCnt))
'will hold each value use it to select your item
Next
答案 1 :(得分:1)
在SQL SERVER中,您可以使用REPLACE: -
SELECT REPLACE(YourData,',','') from YourDataset
这将根据需要替换逗号。