UFT\QTP Learner
Friday, 12 January 2018
Reverse String without changing position
str
=
"my name is sumit"
arr
=
split
(
str,
" "
)
result
=
""
for
i
=
lbound
(
arr
)
to
ubound
(
arr
)
arr
(
i
)=
StrReverse
(
arr
(
i
))
result
=
result
&
" "
&
arr
(
i
)
next
msgbox
result
'
ym eman si timus
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Spring Boot : Exception Handler 14
WaitProperty Method with Regular Expression
Description Waits until the specified object property achieves the specified value or exceeds the specified timeout ...
Vbscript: Reading CSV file using ADODB
Option Explicit Dim adoCSVConnection, adoCSVRecordSet, strPathToTextfile Dim strCSVFile, k ' Specify path to CSV file. strPathToTextF...
UFT: Drag and Drop (When Object Supports it)
Below Code works if the WebElement has supports Drag and Drop Function. If Object does not support Drag and Drop , Mercury Device Replay ...
No comments:
Post a Comment