Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. marcus76

    readline to string - strip to seperate variables - how?

    str = "test1 test2 test5" str = Trim(str) 'Now, while we have 2 consecutive spaces, replace them 'with a single space... Do While InStr(1, str, " ") str = Replace(str, " ", " ") str2 = Replace(str, " ", ",") Loop wscript.echo str2
  2. marcus76

    readline to string - strip to seperate variables - how?

    hi, Please can someone advise how i can take a single string , and seperate out to many strings..problem is, the spaces in between the string caries...i did find some sample script which seems to work, however i need the output all on the same line...see below..appreciate any help Regards...

Part and Inventory Search

Back
Top