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 -

node.js - Why do I get "SOCKS connection failed. Connection not allowed by ruleset" for some .onion sites? -

matlab - 0-by-1 sym - What do I need to change in order to get proper symbolic results? -