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

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -