Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
Dim s As String = "(1234566)"
s = s.Substring(s.indexof("(") + 1)
s= s.Substring(0,s.indexof(")"))
output.show(s)
想保留括号 “()”。。不要了括号内的字符串。。。
Dim s As String = "(1234566)" |
谢谢。。当时没说清楚。。我本来要的是这效果。。。解决了。。
Dim s As String = "1111(1234566)"
Dim s1 As String
s1=s.Substring(0,s.indexof("("))
s = s.Substring(s.indexof("(") + 1)
s= s.Substring(0,s.indexof(")"))
s =s1 & s.Replace(s,"()")
output.show(s)