oliverh Posted March 9, 2007 Posted March 9, 2007 (edited) hello fans i want to cut a string like this... blabla|dumdidumoÝ÷ Ú)í+ºÚ"µÍX how can i realize this? sorry for my bad english greetz oli edit: i have a lot of strings not in the same lenght... but all strings should be cut at the "|" char Edited March 9, 2007 by oliverh
Moderators SmOke_N Posted March 9, 2007 Moderators Posted March 9, 2007 (edited) There are many ways, StringSplit, StringLeft+StringInStr, StringRegExp... $aArray = StringSplit('blabla|dumdidum', '|') MsgBox(64, 'info', $aArray[1]) Edited March 9, 2007 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
oliverh Posted March 9, 2007 Author Posted March 9, 2007 yeah it works... fast reply thanks greetz from germany
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