Hi Venkat, Here is the Script to Reverse the Each word in given string.
str="character/share/bangalore/chennai/trap" NewStr = split(str,"/") for i = lbound(NewStr) to ubound(NewStr) temp = strreverse(NewStr(i)) RevedStr = RevedStr + "/" + temp Next Msgbox RevedStr &" "& str Regards Sedhu On Mon, Oct 28, 2013 at 3:21 PM, Venkat Kandula <[email protected]>wrote: > Hi Friends, > > How to print the each word of string in Reverse order using vb scripting. > > str="character/share/bangalore/chennai/trap" > > Thanks, > Venkat > > -- > -- > You received this message because you are subscribed to the Google > "QTP - HP Quick Test Professional - Automated Software Testing" > group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/MercuryQTP?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "QTP - HP Quick Test Professional - Automated Software Testing" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- -- You received this message because you are subscribed to the Google "QTP - HP Quick Test Professional - Automated Software Testing" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/MercuryQTP?hl=en --- You received this message because you are subscribed to the Google Groups "QTP - HP Quick Test Professional - Automated Software Testing" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
