Skorn 0 Posted April 15, 2005 I'm trying to parse a logfile and its tab delimited can i do this? $temp = StringSplit($lines[1], "{TAB}"); I tried then output to a string of temp[1] and it output the whole string. So how do I parse a table delimited string, anyone know? thx! Share this post Link to post Share on other sites
Jos 2,168 Posted April 15, 2005 $temp = StringSplit($lines[1], @TAB) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
buzz44 1 Posted April 15, 2005 I suppose you could find out how many white spaces it is and use that... 3 or 9 or something. qq Share this post Link to post Share on other sites