Ottomate Posted May 18, 2007 Posted May 18, 2007 How can I split this string " Theoonentsyoutwelfthhouseswiththrsonalunconsciousandanythghiddeneaysiied" into 4 equal parts, and have it look like this in NotePad. Theoonentsyoutwelft hhouseswiththrsonal unconsciousandanyt hghiddeneaysiied I know of stringSplit but still unable to do it, any help would be much appreciated !!!!!
Developers Jos Posted May 18, 2007 Developers Posted May 18, 2007 $input = "Theoonentsyoutwelfthhouseswiththrsonalunconsciousandanythghiddeneaysiied" $sl = StringLen($input) For $x = 0 to 3 $Part = StringMid($input,$x * int($sl/4 +.9) + 1, Int($sl/4+.9)) ConsoleWrite($part & @lf) Next 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.
Ottomate Posted May 18, 2007 Author Posted May 18, 2007 $input = "Theoonentsyoutwelfthhouseswiththrsonalunconsciousandanythghiddeneaysiied" $sl = StringLen($input) For $x = 0 to 3 $Part = StringMid($input,$x * int($sl/4 +.9) + 1, Int($sl/4+.9)) ConsoleWrite($part & @lf) Next .................... Thanx JdeB ......... works like a charm
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