vbscript - call standard function mid() -


how can call mid() complete path?

sample:

a = class.mid("bv",1,1) 

try putting mid in square brackets:

a = class.[mid]("bv",1,1) 

this feature called bracket identifier, , allows using identifiers spaces, non-ascii characters, or identifiers names vbscript reserved words. more info:

vbscript trivia: bracket identifiers , reserved word incompatibilities
identifiers in square brackets


Comments

Popular posts from this blog

node.js - How to mock a third-party api calls in the backend -

visual studio - NuGet Automatic Package Restore when using git submodules -

mysql - How to Link PHP Sub Categories(Pages) Dynamically -