how to store charecters of HARIBABU Using arrays
Answers were Sorted based on User's Feedback
Answer / aditya
Dim Word, reverse, arr1(), length, i
Word = Inputbox(" Enter a Word" )
length = len(word)
redim preserve arr1(length)
For i = 0 to (length -1)
arr1(i) = mid(word,i+1,1)
Next
For i = (length -1) to 0 step -1
reverse = reverse & arr1(i)
Next
msgbox reverse
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / monika
dim a()
str="haribabu"
j=0
for i=1 to len(str)
s=mid(str,i,1)
redim preserve a(j)
a(j)=s
msgbox a(j)
j=j+1
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / usha
str="HARIBABU"
for i =1 to len(str)
a = mid(str,i,1)
temp = temp & a & " "
next
msgbox temp
a = split(temp," ")
for i = 0 to ubound(a)-1
msgbox a(i)
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / b.hari babu
dim a()
cnt=0
str="haribabu"
for i=1 to len(str)
s=mid(str,i,1)
redim preserve a(cnt)
a(cnt)=s
cnt=cnt+1
for j=0 to ubound(a)-1
msgbox a(j)
next
next
| Is This Answer Correct ? | 1 Yes | 3 No |
Explain the extension .hta?
write a vbscript for traffic signal
Mention the environments where vbscript could be run?
When does ‘on click of button’ event gets triggered in the vbscript language?
What are class properties?
Find Out Length of an array without using Ubound?
who you define variables and functions in VB?
Hi, Anybody could you Please tell me How to write the script for Checking whether given number is Prime Number or not..Thanks in Advance
write a vb script to display apple that is 1st a should be displayed then ap then app then appl then apple
how to write function to validate the number of characters entering into the text box?
PLz send me the VB scripts which is having more examples my email id : hareen_11@yahoo.com
What variable can you use to share info across the whole application for one user?