ken82m Posted November 8, 2008 Posted November 8, 2008 I'm pulling the output of an app using stdout read. So I have the string in csv format. I want to create a new row at each @CR and split into columns using the comma's. Seemed like something someone might have udf for Still searching but haven't come up with anything yet. Thanks, Kenny "I believe that when we leave a place, part of it goes with us and part of us remains... Go anywhere, when it is quiet, and just listen.. After a while, you will hear the echoes of all our conversations, every thought and word we've exchanged.... Long after we are gone our voices will linger in these walls for as long as this place remains."
Valuater Posted November 8, 2008 Posted November 8, 2008 (edited) for me, I typically leave the comma delimited array in tact and only split it at actual time of use For $i = 1 To UBound($array) - 1 $Split = StringSplit($array[$i], ",") For $x = 1 To $Split[0] ; do my thing Next Next 8) Edited November 8, 2008 by Valuater
ken82m Posted November 9, 2008 Author Posted November 9, 2008 Yeah no problem, just thought someone might have something already written. Thanks for the help "I believe that when we leave a place, part of it goes with us and part of us remains... Go anywhere, when it is quiet, and just listen.. After a while, you will hear the echoes of all our conversations, every thought and word we've exchanged.... Long after we are gone our voices will linger in these walls for as long as this place remains."
ken82m Posted November 9, 2008 Author Posted November 9, 2008 well after many more searches found this Works like a charm. I just added additional call parameters so it could accept string or files.http://www.autoitscript.com/forum/index.php?showtopic=50680 "I believe that when we leave a place, part of it goes with us and part of us remains... Go anywhere, when it is quiet, and just listen.. After a while, you will hear the echoes of all our conversations, every thought and word we've exchanged.... Long after we are gone our voices will linger in these walls for as long as this place remains."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now