如果我的字符串是“1,60299”获取用户代码的集合......那么如果我想从两端删除“我该怎么办?
前任:strUserCode = "1,62099,100156321"
我建议你使用replace()函数
或者您可以使用LTrim()、RTrim()函数
如果我正确理解您正在使用 vb.net
尝试使用该String.Replace(String, String)
方法,它返回一个新字符串,其中当前实例中出现的所有指定字符串都替换为另一个指定字符串。
像这样的东西-
Dim errString As String = "Example String " & """" & "This is the String with double quotes." & """"
Console.WriteLine("The original string is:{0}'{1}'{0}", Environment.NewLine, errString)
' Correct the spelling of "document".
Dim correctString As String = errString.Replace("""", "")
Console.WriteLine("After correcting the string, the result is:{0}'{1}'", Environment.NewLine, correctString)
怎么样strUserCode.Trim('"');