Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
下面的表格中,在数字最后面添加‘系列’二字,如果有系列二字就不要重复添加了。。。。这个用代码怎么写???
for each r As Row in Tables("XXx").Rows
dim s as string = r("列名") Then
if s.EndsWith("系列") then
r("列名") = s.subString(0,s.Length - 4)
end if
next
for each r As Row in Tables("XXx").Rows
dim s as string = r("列名")
if s.EndsWith("系列") then
r("列名") = s.subString(0,s.Length - 4)
end if
next