How to remove the spaces in a string Ex: "Welcome to
QTPWorld" ?
Answers were Sorted based on User's Feedback
Answer / vinay
Str = Welcome to QTP World
Replace(Str," ","")
Result= WelcometoQTPWorld
| Is This Answer Correct ? | 27 Yes | 0 No |
Answer / krishna
Str="Quick Test Pro"
R=Replace(Str," ","")
msgbox R
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / vasudha
Dim str
str="welcome to qtp"
arr=split(str," ")
For i=0 to Ubound(arr)
abc=abc&arr(i)
Next
print abc
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / mithuna reddy
Dim str,arrsplit,arrjoin
str = "Welcome to QTP World"
arrsplit = Split(str," ")
arrjoin = Join(arrsplit,"")
MsgBox arrjoin
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / lak
Mahe answer is will work only traling and leading the
spaces from a string.But middle spaces can not be removed
from a string.
agree with vinay ,vasudha
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ranni
Trim function will not work,it cannot remove spaces in between words
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / sowjanya
Msgbox Replace("wellcome to qtp world"," ","")
OR
str= "Wellcome to qtp world"
arr=Split(str," ")
for i=0 to Ubound(arr)
abc=abc&arr(i)
next
msgbox abc
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vishnu
Str = "Welcome to QTPWorld"
Sp1=Split(str)
For i=0 to ubound(Sp1)
temp=temp&Sp1(i)
Next
print temp
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mahesh
Ex::
X="Welcome to QTP World"
Y=trim(X)
Msgbox Y
O/p::WelcometoQTPWorld
| Is This Answer Correct ? | 4 Yes | 29 No |
which is the best institute in banglaore for software testing?
accept a string & display whether a is present or not
How to Enter Values on the Command promt using VB script
Is it possible to pass optional argument to function in vb script?
what is the use of QCUtil? explain with one example?
Write VB script to convert from feet to inches(hint 1feet=12 inches)
How to replace junk code recorded by QTP with a mall function.
How to identify column in VSFlexgrid? My VSFlexgrid window is identified as 'Active X Control'
can any body give the code to write the function for given suppose user login with usrer id and pwd to yahoomail.after cliking "sign in"if it is valid user id the next page will display userid'message box.( Note u have to use excel sheet to retrive the userid's data)
why variable name should not exceed 255 characters?
hai..friends ....what is the difference between function and sub procedure ....here every one know's theoretically here my question is what is the meaning of function can return the value and sub can't return the value...can you give one example with some values for that ....what does it mean ? how function can return the value...sub can not...any one please...........with example
Mention what is the main difference between function and sub-procedure?