06 November 2017

Difference between InStr And InStrRev function ..

str = "abcdeabcde"

MsgBoxInStr(str, "e") ' search from start, will return 5
MsgBoxInStrrev(str, "e")   ' search from end, , will return 10

...

No comments:

Post a Comment

AOM - Automation Object Model

'Creating QuicTest Object Set  qtapp =  createobject ( "QuickTest.Application" ) 'Launching the Application If  qtapp...