?

解决方案 »

  1.   

    Len函数取字符串长度,
    Mid(string, start[, length])  取子串
    Replace(expression, find, replacewith[, compare[, count[, start]]])
    替换
      

  2.   

    len(str)取得字符串的长度
    left(str,len)载取字符串左边长度为len的字符串
    right(str,len).........右..................
    mid(str,pos,len)从pos开始,载取len长的字符串
    replace(str,src,dst)在str中把src替换为dst上面的常用的方法。你可以参考MS的VBScript帮助。