我正试图修剪角色"#"来自使用VB String.Trim(Char()) Method
的字符串Dim charsToTrim() As Char = {"#"c}
Dim buildNumber = buildNumberArg0.Trim(charsToTrim())
根据文档和various online discussions,该语法应该有效,但是我在" Dim charsToTrim()"中得到以下错误:行:
Error: Expected end of statement
Code: 800A0401
我在这里做错了什么?感谢。
答案 0 :(得分:1)
VBScript只有一种名为Variant的数据类型。
试试这个:
dim strParent,strChild
strParent="#this is an exa##mp#le of t#rim#m##ing#"
strChild=Replace(strParent,"#","")
'strChild="this is an example of trimming"
wscript.echo strChild