dkwokgs 0 Posted November 24, 2004 (edited) Hi there, How to read and extract a line and remove space (multiple space or maybe tab in between) from the string? eg. 10.151.1.42 corp.com www.corp2.com Thanks Daniel Edited November 24, 2004 by dkwokgs Share this post Link to post Share on other sites
Guest Py7|-|[]/\/ Posted November 24, 2004 Search for StringSplit in the help file. That might be what you are looking for. Share this post Link to post Share on other sites
MHz 80 Posted November 24, 2004 (edited) StringStripWS will strip white space. Eample$text = StringStripWS("10.151.1.42 corp.com www.corp2.com", 8) MsgBox(0, "Stripped all white space", $text) Edited November 24, 2004 by MHz Share this post Link to post Share on other sites