-1

如果我的字符串是“1,60299”获取用户代码的集合......那么如果我想从两端删除“我该怎么办?

前任:strUserCode = "1,62099,100156321"

4

3 回答 3

0

我建议你使用replace()函数

或者您可以使用LTrim()、RTrim()函数

如果我正确理解您正在使用 vb.net

于 2012-06-15T04:48:56.060 回答
0

尝试使用该String.Replace(String, String)方法,它返回一个新字符串,其中当前实例中出现的所有指定字符串都替换为另一个指定字符串。

String.Replace 方法(字符串,字符串)

像这样的东西-

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)
于 2012-06-15T06:35:47.193 回答
0

怎么样strUserCode.Trim('"');

于 2012-06-15T10:28:19.800 回答